Top "Setuptools" questions

Setuptools builds on Python’s distutils to provide easier building, distribution, and installation of libraries and applications.

pip install -U setuptools fail windows 10

I just installed Python3.7 and Pycharm on my Windows 10 PC. I am running pip version 9.0.2 In Pycharm, it says I …

python windows pip upgrade setuptools
How to include license file in setup.py script?

I have written a Python extension module in C++. I plan to distribute the module with setuptools. There will be …

python setuptools
How to obtain arguments passed to setup.py from pip with '--install-option'?

I am using pip 1.4.1, attempting to install a package from a local path, for example: pip install /path/to/my/…

python pip setuptools
Using setuptools to create a cython package calling an external C library

I am trying to compile, install and run a package that we'll call myPackage. It contains a *.pyx file that …

python cython setuptools distutils setup.py
"setup.py upload" is failing with "Upload failed (401): You must be identified to edit package information"

When running.. python setup.py sdist register upload ..I get the following output: running register We need to know who …

python packaging setuptools
setuptools: adding additional files outside package

I have a python application that has a fixed layout which I cannot change. I would like to wrap it …

python setuptools
Pipenv vs setup.py

I am trying to migrate to pipenv. I traditionally used setup.py with pip and did pip install -e . to …

python pip setuptools pipenv
Package only binary compiled .so files of a python library compiled with Cython

I have a package named mypack which inside has a module mymod.py, and the __init__.py. For some reason …

python cython setuptools distutils setup.py
Python "setup.py develop": is it possible to create ".egg-info" folder not in source code folder?

Python has ability to "pseudoinstall" a package by running it's setup.py script with develop instead of install. This modifies …

python setuptools distutils
Custom location for .pypirc file

Does setuptools allow for the .pypirc file to be specified in a custom location rather than $HOME/.pypirc? I'm setting …

python jenkins setuptools pypi