comparison setup.py @ 0:6670fe246450

initial commit
author Jeff Hammel <k0scist@gmail.com>
date Thu, 14 Jul 2016 12:27:21 -0700
parents
children dd3f3918cb88
comparison
equal deleted inserted replaced
-1:000000000000 0:6670fe246450
1 import os
2 from setuptools import setup
3
4 try:
5 here = os.path.dirname(os.path.abspath(__file__))
6 description = file(os.path.join(here, 'README.txt')).read()
7 except IOError:
8 description = None
9
10 version = '0.0'
11
12 deps = []
13
14 setup(name='a8e',
15 version=version,
16 description="a8e is `a8e abbreviate`",
17 long_description=description,
18 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
19 keywords='',
20 author='Jeff Hammel',
21 author_email='k0scist@gmail.com',
22 url='http://k0s.org/hg/a8e',
23 license='',
24 py_modules=['a8e'],
25 packages=[],
26 include_package_data=True,
27 zip_safe=False,
28 install_requires=deps,
29 entry_points="""
30 # -*- Entry points: -*-
31 [console_scripts]
32 a8e = a8e:main
33 """,
34 )
35