Mercurial > hg > whichpy
comparison setup.py @ 1:f4b604d44ff5 default tip
rename console script to avoid import madness
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 04 Jul 2017 20:56:43 -0700 |
parents | bcd62e6d822c |
children |
comparison
equal
deleted
inserted
replaced
0:bcd62e6d822c | 1:f4b604d44ff5 |
---|---|
5 here = os.path.dirname(os.path.abspath(__file__)) | 5 here = os.path.dirname(os.path.abspath(__file__)) |
6 description = open(os.path.join(here, 'README.txt')).read() | 6 description = open(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='whichpy', | 14 setup(name='whichpy', |
15 version=version, | 15 version=version, |
27 zip_safe=False, | 27 zip_safe=False, |
28 install_requires=deps, | 28 install_requires=deps, |
29 entry_points=""" | 29 entry_points=""" |
30 # -*- Entry points: -*- | 30 # -*- Entry points: -*- |
31 [console_scripts] | 31 [console_scripts] |
32 which.py = which:main | 32 which-py = which:main |
33 """, | 33 """, |
34 ) | 34 ) |
35 | 35 |