I have package \"A\" with a setup.py and an extras_requires line like: extras_require = { \'ssh\':[\'paramiko\'],
When I run python setup.py test the dependencies listed in tests_require in setup.py are dow开发者_如何转开发nloaded to the current directory. When I run python setup.py install, the dependencies list
I need to install in python 2.6 or 2.7 for 开发者_StackOverflow社区windows the library PyWeka0.3dev, It says it requires setuptools, which I installed but then they told me it was a deprecated instala
I\'m trying to build a source distribution package with distribute which should include a post-install method being called after the install is finished.
Short Question What is the proper way to install pip, virtualenv, and distribute? Background In my answer to SO question 4314376, I recommended using ez_setup so that you could then install pip and
Our large python project is being upgraded from using the legacy \"setuptools\" project to use \"distribute\" as a drop-in replacement.
Getting the following kinds of warnings when running most python scripts in the command line: /Library/Python/2.6/site-packages/virtualenvwrapper/hook_loader.py:16: UserWarning: Module
When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a \"PROJECT-egg.info\" file in the zip inside my \"dist\" folder, which I don\'t use, but it doesn\'t hurt
i need you help guys. I have designed numerouse icons. I need to package them for sale into these categories Normal, Hot, Disabled, Gray and these size 16x16, 32x32, 48x48, 128x128, 256x256.
I use distribute to package a small python library. I made a directory structure as described in the Hitchhiker\'s Guide to Packaging.