I am trying out the Pyramid tutorial example and it\'s built-in setup.py file appears to be set up to add static files to the egg file but it doesn\'t actually happen. I\'ve done some search and toyin
I am trying to list ScientificPython as a dependency in my setup.py. However, during the installation process, python seems to not find the package. What is wrong in my approach?
SITUATION: I have a python library, which is controlled by git, and bundled with distutils/setuptools. And I want to automatically generate version number based on git tags, both for setup.py sdist a
I installed a package from git hub: pip install -e git+http://github.com/un33k/django-uuslug.git#egg=django-uuslug
Doesn\'t setuptools use easy_install to ge开发者_运维技巧t the additional dependencies you specify in a setup.py? I\'m asking because say I have a setup.py and in the install_requires = ["numpy&q
So I\'ve been working on a python project and reached the point that I have to mak开发者_如何学Goe some kind of installer/distribution. Now this project has quite a lot of dependencies and some resour
I have created a package that I will be distributing throughout the company that replaces a legacy bash script with the same name. It is referenced many places so it needs to execute like the current
I want to install pip. It should support Python 3, but it requires setuptools, which is available only for Python 2.
I am trying to test a package that includes some f90 files. If I build or install and specify the fortran compiler, it works fine. However, when I try to test I get the following error:
setup.py of my package X uses setuptools to optionally install an extra package Y, via the extras_require parameter.