Mercurial > hg > ConfigOptionParser
comparison setup.py @ 0:3081763b099b
initial commit of ConfigOptionParser
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Thu, 20 May 2010 08:47:35 -0700 |
| parents | |
| children | 3148ccbd82de |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:3081763b099b |
|---|---|
| 1 from setuptools import setup, find_packages | |
| 2 | |
| 3 version = '0.0' | |
| 4 | |
| 5 setup(name='ConfigOptionParser', | |
| 6 version=version, | |
| 7 description="a version of OptionParser that allows parsing from .ini files", | |
| 8 long_description="""\ | |
| 9 """, | |
| 10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 11 keywords='ini cli', | |
| 12 author='Jeff Hammel', | |
| 13 author_email='jhammel@mozilla.com', | |
| 14 url='http://k0s.org', | |
| 15 license='MPL', | |
| 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 17 include_package_data=True, | |
| 18 zip_safe=False, | |
| 19 install_requires=[ | |
| 20 # -*- Extra requirements: -*- | |
| 21 ], | |
| 22 entry_points=""" | |
| 23 # -*- Entry points: -*- | |
| 24 """, | |
| 25 ) |
