Mercurial > getan
comparison setup.py @ 505:84b8dbc5766f
setup.py: adjust indentation
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 01 Nov 2018 10:59:50 +0100 |
parents | 65256f68a0a7 |
children | 3db4f1a0d0a3 |
comparison
equal
deleted
inserted
replaced
504:648b9c1b5bb4 | 505:84b8dbc5766f |
---|---|
49 install_requires=[ | 49 install_requires=[ |
50 'jinja2', | 50 'jinja2', |
51 'urwid>=1.1.2' | 51 'urwid>=1.1.2' |
52 ], | 52 ], |
53 scripts=[ | 53 scripts=[ |
54 os.path.join(scripts_dir, "convert-projects"), | 54 os.path.join(scripts_dir, "convert-projects"), |
55 os.path.join(scripts_dir, "getan-daily-report"), | 55 os.path.join(scripts_dir, "getan-daily-report"), |
56 os.path.join(scripts_dir, "getan-report")], | 56 os.path.join(scripts_dir, "getan-report")], |
57 entry_points={"console_scripts": | 57 entry_points={"console_scripts": |
58 ["getan=getan.main:main"]}, | 58 ["getan=getan.main:main"]}, |
59 classifiers=[ | 59 classifiers=[ |
60 "Development Status :: 5 - Production/Stable", | 60 "Development Status :: 5 - Production/Stable", |
61 "Topic :: Utilities", | 61 "Topic :: Utilities", |
65 "License :: OSI Approved :: " | 65 "License :: OSI Approved :: " |
66 "GNU General Public License v3 or later (GPLv3+)", | 66 "GNU General Public License v3 or later (GPLv3+)", |
67 "Operating System :: POSIX", | 67 "Operating System :: POSIX", |
68 "Programming Language :: Python :: 3.4" | 68 "Programming Language :: Python :: 3.4" |
69 ], | 69 ], |
70 ) | 70 ) |