Python distribute (Setuptools) module.
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.pyI have package "A" with a setup.py and an extras_requires line like: extras_require = { 'ssh': ['paramiko'], }, And a …
python setuptools pip distributeI installed python-pip package via yum (using Fedora's updates repo). It does not add the pip script to my PATH …
python fedora distributeI'm trying to figure out how to construct a Python source package that is installable via pip. I tried creating …
python virtualenv setuptools pip distributeI'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 distributeI 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-requiresI want to distribute some python code, with a few external dependencies, to machines with only core python installed (and …
python installation virtualenv distributeIn setup.py, I have specified package_data like this: packages=['hermes'], package_dir={'hermes': 'hermes'}, package_data={'hermes': ['templates/*.…
python build setuptools distutils distributeIn a crusade to make my application pip-installable, I'm fighting big fights with setuptools and distribute. I assume my dependencies …
python virtualenv setuptools distributeI'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