Mercurial > hg > abbrev
view setup.py @ 2:aa57b8f607bd default tip
still doesnt work; lets find another
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 14 Jul 2016 12:17:35 -0700 |
parents | ee1c34d2f1c4 |
children |
line wrap: on
line source
""" setup packaging script for abbrev """ import os version = "0.1" dependencies = [] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] abbrev = abbrev.main: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 )