I\'m using setuptools for a Python script I wrote After installing, I do: $ megazord -i input -d database -v xx-xx -w yy-yy
I\'d like to call Python\'s distutils\' or setuptools\' setup() function in a slightly unconventional way, but I\'m not sure whether distutils is meant for this kind of usage.
I am trying to install distribute using ActivePython 3.1.2 on Windows. Running python distribute_setup.py as described on the cheese shop give me:
I maintain a few Python packages. I have a very similar setup.py file for each of them. However, when doing setup.py install, one of my packages gets installed as an egg, while the others get installe
I would like to release a python module I wrote which depends on several packages. What\'s the easiest way to make it so these pa开发者_如何学Gockages are programmatically downloaded just in case they
Setuptools lets you list requirements for optional features # mypackage \'extras_require\' : { \'PDF\' : [\'reportlab\'], \'DOCX\' : [\'docxlib\'] }
If I have a script that builds eggs, basically by running python setup.py bdist_egg --exclude-source-files
I\'m trying to figure out how I can install a开发者_开发知识库 python package that doesn\'t have a setup.py file with pip. (package in question is http://code.google.com/p/django-google-analytics/)
I tried to find a question that would answer to this question but wasn\'t succesful, so I made a new question.
As part of my project\'s setup process, I need to symlink one of the packages to a specified directory so an init.d script can find it. Is there any way to add this as a post-processing command to set