Mercurial > hg > CommandParser
view setup.py @ 6:48aa5a9ef7e1
give a version
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 30 Mar 2012 09:54:26 -0700 |
parents | a41537c4284f |
children | 109627b7db9f |
line wrap: on
line source
""" setup packaging script for CommandParser """ import os version = "0.1" 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 )