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..."

Easy_install Gets Wrong Pip Version

I have been following the instructions on http://docs.python-guide.org/en/latest/starting/install/o… Read more Easy_install Gets Wrong Pip Version

Setuptools Platform Specific Dependencies

Is there any way to tell setuptools or distribute to require a package on a specific platform? In … Read more Setuptools Platform Specific Dependencies

Why Is An Egg-info File Created When I'm Using Distutils?

Below is my setup.py. I don't use anything from setuptools in my code and my project has no ext… Read more Why Is An Egg-info File Created When I'm Using Distutils?

Python Setuptools Package_data - Pip Fails On Subfolders

I am trying to make my own pip package installation to work and I have troubles with subfolders in … Read more Python Setuptools Package_data - Pip Fails On Subfolders

Is `setup.cfg` Deprecated?

It's not completely clear to me, what is the status of setup.cfg. I am looking for solutions fo… Read more Is `setup.cfg` Deprecated?

Getting Setuptools To Ignore Pypi Repository

I have in my packages setup.py: from setuptools import setup setup( dependency_links=['htt… Read more Getting Setuptools To Ignore Pypi Repository

How To Make Easy_install Execute Custom Commands In Setup.py?

I want my setup.py to do some custom actions besides just installing the Python package (like insta… Read more How To Make Easy_install Execute Custom Commands In Setup.py?

When Does Setuptools Install Editable Link To /.../my_module/build/lib/ Andwhen Does It Link To /.../my_module?

I noticed that when I do an editable install (pip install --user -e .), sometimes, setuptools make … Read more When Does Setuptools Install Editable Link To /.../my_module/build/lib/ Andwhen Does It Link To /.../my_module?

How To Solve Error Installing Setuptools Python In Windows

can someone help me with an issue I am struggling for a couple of hours, I am trying to install … Read more How To Solve Error Installing Setuptools Python In Windows

Setuptools - Shipping Additional Files

Situation I createt my setup.py file. Most of it works out of the box but I'm having some troub… Read more Setuptools - Shipping Additional Files

When To Use Pip Requirements File Versus Install_requires In Setup.py?

I'm using pip with virtualenv to package and install some Python libraries. I'd imagine w… Read more When To Use Pip Requirements File Versus Install_requires In Setup.py?

Is `setup.cfg` Deprecated?

It's not completely clear to me, what is the status of setup.cfg. I am looking for solutions fo… Read more Is `setup.cfg` Deprecated?