Setuptools builds on Python’s distutils to provide easier building, distribution, and installation of libraries and applications.
I'm fairly new to setuptools. I've seen a few similar questions and it drives a little bit insane that I've …
python configuration setuptoolsI'm trying to create an entry point for the main method in one of my python modules, and there seems …
python setuptools setup.py entry-pointIn setup.py, I have specified package_data like this: packages=['hermes'], package_dir={'hermes': 'hermes'}, package_data={'hermes': ['templates/*.…
python build setuptools distutils distributeI have a small python application that I would like to make into a downloadable / installable executable for UNIX-like systems. …
python unix setuptools eggI'm using setuptools 0.6 to package my code. By default when I type python setup.py sdist, the tool creates a …
python directory packaging setuptoolsI'm accustomed to pre-downloading packages using Pip, then copying them over to a target machine for deployment. With the newly …
python pip setuptools python-wheelHi I am on OSx Mavericks, using python 2.7 and pip version 6.0.8 and setuptools version 12.2. When I try to install my …
python pip setuptools distutilsIn a crusade to make my application pip-installable, I'm fighting big fights with setuptools and distribute. I assume my dependencies …
python virtualenv setuptools distributeIf I have packages installed from easy_install, the eggs are prepended to sys.path before the items in the …
python setuptools easy-installI'm not quite sure how to build a really simple one-file source module. Is there a sample module out there …
python setuptools egg