comparison setup.py @ 488:463894654d77 3.0

Prepares for release 3.0 rename getan-eval.py to getan-report. rename getan-report.py to getan-day-report installed getan-report as script. installed getan-day-report as script. set python_requires to >=3.4
author Magnus Schieder <mschieder@intevation.de>
date Fri, 29 Jun 2018 19:47:01 +0200
parents d80f40d239d2
children 65256f68a0a7
comparison
equal deleted inserted replaced
487:e7334b946caa 488:463894654d77
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 # 3 #
4 # (c) 2011, 2014 by Björn Ricks <bjoern.ricks@intevation.de> 4 # (c) 2011, 2014 by Björn Ricks <bjoern.ricks@intevation.de>
5 # (c) 2017 by Intevation GmbH 5 # (c) 2017, 2018 by Intevation GmbH
6 # 6 #
7 # Author(s): 7 # Author(s):
8 # * Björn Ricks <bjoern.ricks@intevation.de> 8 # * Björn Ricks <bjoern.ricks@intevation.de>
9 # * Bernhard Reiter <bernhard.reiter@intevation.de> 9 # * Bernhard Reiter <bernhard.reiter@intevation.de>
10 # * Magnus Schieder <magnus.schieder@intevation.de>
10 # 11 #
11 # A python worklog-alike to log what you have 'getan' (done). 12 # A python worklog-alike to log what you have 'getan' (done).
12 # 13 #
13 # This is Free Software licensed under the terms of GPLv3 or later. 14 # This is Free Software licensed under the terms of GPLv3 or later.
14 # For details see LICENSE coming with the source of 'getan'. 15 # For details see LICENSE coming with the source of 'getan'.
38 maintainer="Bernhard E. Reiter", 39 maintainer="Bernhard E. Reiter",
39 maintainer_email="bernhard.reiter@intevation.de", 40 maintainer_email="bernhard.reiter@intevation.de",
40 license="GPLv3+", 41 license="GPLv3+",
41 long_description=read("README"), 42 long_description=read("README"),
42 packages=find_packages(), 43 packages=find_packages(),
43 python_requires='>=3', 44 python_requires='>=3.4',
44 package_data={ 45 package_data={
45 "": ["*.txt"], 46 "": ["*.txt"],
46 "getan": ["templates/*"], 47 "getan": ["templates/*"],
47 }, 48 },
48 install_requires=[ 49 install_requires=[
62 "Intended Audience :: Developers", 63 "Intended Audience :: Developers",
63 "Intended Audience :: End Users/Desktop", 64 "Intended Audience :: End Users/Desktop",
64 "License :: OSI Approved :: " 65 "License :: OSI Approved :: "
65 "GNU General Public License v3 or later (GPLv3+)", 66 "GNU General Public License v3 or later (GPLv3+)",
66 "Operating System :: POSIX", 67 "Operating System :: POSIX",
67 "Programming Language :: Python :: 3" 68 "Programming Language :: Python :: 3.4"
68 ], 69 ],
69 ) 70 )
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)