Mercurial > hg > abbrev
diff setup.py @ 0:ee1c34d2f1c4
initial commit
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 02 Mar 2014 19:01:54 -0800 |
parents | |
children | aa57b8f607bd |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Sun Mar 02 19:01:54 2014 -0800 @@ -0,0 +1,45 @@ +""" +setup packaging script for abbrev +""" + +import os + +version = "0.0" +dependencies = ['MakeItSo', 'webob'] + +# allow use of setuptools/distribute or distutils +kw = {} +try: + from setuptools import setup + kw['entry_points'] = """ + [console_scripts] + abbrev = abbrev.main:main + abbrev-template = abbrev.template:main +""" + 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='abbrev', + version=version, + description="abbreviate lists of words to e.g. single-letter switches", + long_description=description, + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Jeff Hammel', + author_email='k0scist@gmail.com', + url='http://k0s.org/hg/abbrev', + license='', + packages=['abbrev'], + include_package_data=True, + zip_safe=False, + **kw + ) +