Mercurial > getan
comparison setup.py @ 375:db872ef92bd9
Update coding style for pep8
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 10 Mar 2014 10:11:31 +0100 |
parents | 804211b988aa |
children | 51b2e575f397 |
comparison
equal
deleted
inserted
replaced
374:87cb6c55de1c | 375:db872ef92bd9 |
---|---|
13 | 13 |
14 import os.path | 14 import os.path |
15 | 15 |
16 import getan | 16 import getan |
17 | 17 |
18 | |
18 def read(fname): | 19 def read(fname): |
19 return open(os.path.join(os.path.dirname(__file__), | 20 return open(os.path.join(os.path.dirname(__file__), |
20 fname)).read() | 21 fname)).read() |
21 | 22 |
22 setup(name="getan", | 23 setup(name="getan", |
23 version=getan.__version__, | 24 version=getan.__version__, |
24 description="getan - A worklog like tool", | 25 description="getan - A worklog like tool", |
25 url="http://hg.intevation.org/getan/", | 26 url="http://hg.intevation.org/getan/", |
26 license = "GPLv3+", | 27 license="GPLv3+", |
27 long_description=read("README"), | 28 long_description=read("README"), |
28 packages=find_packages(), | 29 packages=find_packages(), |
29 package_data = {"" : ["*.txt"], | 30 package_data={"": ["*.txt"], }, |
30 }, | 31 entry_points={"console_scripts": |
31 entry_points = { "console_scripts": ["getan=getan.main:main", | 32 ["getan=getan.main:main", |
32 "getan-classic=getan.classic.getan:main", | 33 "getan-classic=getan.classic.getan:main", |
33 "zeiterfassung=getan.contrib.zeiterfassung:main", | 34 "zeiterfassung=getan.contrib.zeiterfassung:main", |
34 "zeitsort=getan.contrib.zeitsort:main", | 35 "getan-eval=getan.contrib.getan-eval:main", |
35 ] }, | 36 "zeitsort=getan.contrib.zeitsort:main", |
37 ]}, | |
36 classifiers=[ | 38 classifiers=[ |
37 "Topic :: Utilities", | 39 "Topic :: Utilities", |
38 "Environment :: Console", | 40 "Environment :: Console", |
39 "Intended Audience :: Developers", | 41 "Intended Audience :: Developers", |
40 "Intended Audience :: End Users/Desktop", | 42 "Intended Audience :: End Users/Desktop", |
41 "License :: OSI Approved :: GNU General Public License (GPL)", | 43 "License :: OSI Approved :: GNU General Public License (GPL)", |
42 "Operating System :: POSIX", | 44 "Operating System :: POSIX", |
43 "Programming Language :: Python", | 45 "Programming Language :: Python", |
44 ] | 46 ] |
45 ) | 47 ) |