Skip to content Skip to sidebar Skip to footer
Showing posts with the label Setuptools

Custom Location For .pypirc File

Does setuptools allow for the .pypirc file to be specified in a custom location rather than $HOME/.… Read more Custom Location For .pypirc File

How To Make Setuptools Install A Wheel Containing Multiple Packages?

Suppose this wheel: M Filemode Length Date Time File - ---------- -------- ---… Read more How To Make Setuptools Install A Wheel Containing Multiple Packages?

How Can I Install Packages Hosted In A Private Pypi Using Setup.py?

I'm trying to write the setup.py install file for a private project, which has both public and … Read more How Can I Install Packages Hosted In A Private Pypi Using Setup.py?

How To Make "python Setup.py Install" Install Source Instead Of Egg File?

I used to run python setup.py install in a python project, it will just move the source to site-pac… Read more How To Make "python Setup.py Install" Install Source Instead Of Egg File?

Pros And Cons Of 'script' Vs. 'entry_point' In Python Command Line Scripts

Python's setuptool has two ways of adding command line scripts to a Python package: script and … Read more Pros And Cons Of 'script' Vs. 'entry_point' In Python Command Line Scripts

Unable To Use Easy_install To Install Python Modules

I am trying to use easy_install to install a module called requests by doing easy_install requests… Read more Unable To Use Easy_install To Install Python Modules

Tidying Up The Cython Build-flags Used By Gcc

I currently use 'setuptools' to automatically cythonize and compile my Cython modules on Li… Read more Tidying Up The Cython Build-flags Used By Gcc

Importing Python Package - "importerror: No Module Named..."

I know there are a lot of questions about 'ImportError: No module named...' but they ususal… Read more Importing Python Package - "importerror: No Module Named..."