Mercurial > hg > CommandParser
diff setup.py @ 0:a41537c4284f
stub
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 29 Mar 2012 16:44:35 -0700 |
parents | |
children | 48aa5a9ef7e1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Thu Mar 29 16:44:35 2012 -0700 @@ -0,0 +1,42 @@ +""" +setup packaging script for CommandParser +""" + +import os + +version = "0.0" +dependencies = [] + +# allow use of setuptools/distribute or distutils +kw = {} +try: + from setuptools import setup + kw['entry_points'] = """ + [console_scripts] +""" + kw['install_requires'] = dependencies +except ImportError: + from distutils.core import setup + kw['requires'] = dependencies + +try: + here = os.path.dirname(os.path.abspath(__file__)) + description = file(os.path.join(here, 'README.txt')).read() +except IOError: + description = '' + + +setup(name='CommandParser', + version=version, + description="change objects to OptionParser instances via reflection", + long_description=description, + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Jeff Hammel', + author_email='jhammel@mozilla.com', + url='http://k0s.org/hg/CommandParser', + license='', + packages=['commandparser'], + include_package_data=True, + zip_safe=False, + **kw + )