comparison setup.py @ 1:a4680e54c481

fix formatting
author Jeff Hammel <k0scist@gmail.com>
date Tue, 23 Aug 2016 13:57:20 -0700
parents 02d077c5627a
children d1880117acb5
comparison
equal deleted inserted replaced
0:02d077c5627a 1:a4680e54c481
5 here = os.path.dirname(os.path.abspath(__file__)) 5 here = os.path.dirname(os.path.abspath(__file__))
6 description = file(os.path.join(here, 'README.txt')).read() 6 description = file(os.path.join(here, 'README.txt')).read()
7 except IOError: 7 except IOError:
8 description = None 8 description = None
9 9
10 version = '0.0' 10 version = '0.1'
11 11
12 deps = [] 12 deps = []
13 13
14 setup(name='fail', 14 setup(name='fail',
15 version=version, 15 version=version,
17 long_description=description, 17 long_description=description,
18 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 18 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
19 keywords='', 19 keywords='',
20 author='Jeff Hammel', 20 author='Jeff Hammel',
21 author_email='k0scist@gmail.com', 21 author_email='k0scist@gmail.com',
22 url='', 22 url='http://k0s.org/hg/fail',
23 license='', 23 license='',
24 py_modules=['fail'], 24 py_modules=['fail'],
25 packages=[], 25 packages=[],
26 include_package_data=True, 26 include_package_data=True,
27 zip_safe=False, 27 zip_safe=False,
30 # -*- Entry points: -*- 30 # -*- Entry points: -*-
31 [console_scripts] 31 [console_scripts]
32 fail = fail:main 32 fail = fail:main
33 """, 33 """,
34 ) 34 )
35