Top "Distribute" questions

Python distribute (Setuptools) module.

Why does "python setup.py sdist" create unwanted "PROJECT-egg.info" in project root directory?

When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a "PROJECT-egg.info" …

python setuptools distutils distribute setup.py
Does pip handle extras_requires from setuptools/distribute based sources?

I have package "A" with a setup.py and an extras_requires line like: extras_require = { 'ssh': ['paramiko'], }, And a …

python setuptools pip distribute
python-pip yum package provides pip-python instead of pip

I installed python-pip package via yum (using Fedora's updates repo). It does not add the pip script to my PATH …

python fedora distribute
installing a Python package source tarball with pip

I'm trying to figure out how to construct a Python source package that is installable via pip. I tried creating …

python virtualenv setuptools pip distribute
installing modules in python - pip, distribute, nose, virtualenv

I'm aware that there are similar questions on SO. This one, for example: What's the proper way to install pip, …

python module virtualenv pip distribute
install_requires based on python version

I have a module that works both on python 2 and python 3. In Python<3.2 I would like to install a …

python setuptools distutils distribute install-requires
Distributing python code with virtualenv?

I want to distribute some python code, with a few external dependencies, to machines with only core python installed (and …

python installation virtualenv distribute
How do I use data in package_data from source code?

In setup.py, I have specified package_data like this: packages=['hermes'], package_dir={'hermes': 'hermes'}, package_data={'hermes': ['templates/*.…

python build setuptools distutils distribute
How do I force `setup.py test` to install dependencies into my `virtualenv`?

In a crusade to make my application pip-installable, I'm fighting big fights with setuptools and distribute. I assume my dependencies …

python virtualenv setuptools distribute
Packaging resources with setuptools/distribute

I'm developing an Python egg that has several .txt dependencies (they're templates used to generate files by the egg itself), …

python setuptools distribute pypi