Mercurial > hg > ConfigOptionParser
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Thu May 20 08:47:35 2010 -0700 @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages + +version = '0.0' + +setup(name='ConfigOptionParser', + version=version, + description="a version of OptionParser that allows parsing from .ini files", + long_description="""\ +""", + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + keywords='ini cli', + author='Jeff Hammel', + author_email='jhammel@mozilla.com', + url='http://k0s.org', + license='MPL', + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + ], + entry_points=""" + # -*- Entry points: -*- + """, + )