setuptools
Setuptools not passing arguments for entry_points
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[详细]
2022-12-30 09:21 分类:问答Directly call distutils' or setuptools' setup() function with command name/options, without parsing the command line?
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.[详细]
2022-12-30 08:28 分类:问答Howto install distribute for Python 3
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:[详细]
2022-12-30 01:22 分类:问答Python: Why do some packages get installed as eggs and some as "egg folders"?
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[详细]
2022-12-29 12:53 分类:问答Easiest way to automatically download required modules in Python?
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[详细]
2022-12-26 14:13 分类:问答Does setup.py's extras_require keyword support comma-separated extras?
Setuptools lets you list requirements for optional features # mypackage \'extras_require\' : { \'PDF\' : [\'reportlab\'], \'DOCX\' : [\'docxlib\'] }[详细]
2022-12-21 05:07 分类:问答How can I detect errors programatically when building an egg with setuptools?
If I have a script that builds eggs, basically by running python setup.py bdist_egg --exclude-source-files[详细]
2022-12-19 11:55 分类:问答PIP install a Python Package without a setup.py file?
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/)[详细]
2022-12-19 10:42 分类:问答Python setuptools import error (Using NetBeans)
I tried to find a question that would answer to this question but wasn\'t succesful, so I made a new question.[详细]
2022-12-19 03:01 分类:问答Use distribute/setuptools to create symlink (or run script)?
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[详细]
2022-12-18 05:35 分类:问答