Top "Setup.py" questions

setup.

distutils: How to pass a user defined parameter to setup.py?

Please prompt me how to pass a user-defined parameter both from the command line and setup.cfg configuration file to …

python distutils setup.py
Post-install script with Python setuptools

Is it possible to specify a post-install Python script file as part of the setuptools setup.py file so that …

python setuptools software-distribution setup.py pypi
How may I override the compiler (gcc) flags that setup.py uses by default?

I understand that setup.py uses the same CFLAGS that were used to build python. I have a single C …

python gcc setup.py
Why can't I find ansible when I install it using setup.py?

Because I had some trouble with Ansible (I'm on mac) which seemed to be fixed in the latest dev version …

python macos installation pip setup.py
How can you bundle all your python code into a single zip file?

It would be convenient when distributing applications to combine all of the eggs into a single zip file so that …

python setup.py pypi
Using an extra python package index url with setup.py

Is there a way to use an extra python package index (ala pip --extra-index-url pypi.example.org mypackage) with setup.…

python packaging setup.py pypi
Python Setup.py Build_Ext --inplace

I am building a Cython program (called for ex. testpackage) using the command: python setup.py build_ext --inplace In …

python cython setup.py
What option do I need in setup.py to create the package in the right directory?

I am using setup.py to create a python package, which I want to install via pip. To correctly install …

python python-2.7 package pip setup.py
How to install Python module without setup.py?

I'm new to Python and am trying to install this module: http://www.catonmat.net/blog/python-library-for-google-search/ There is no …

python ubuntu installation setup.py
How to add package data recursively in Python setup.py?

I have a new library that has to include a lot of subfolders of small datafiles, and I'm trying to …

python distutils setup.py