-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
98 lines (93 loc) · 3.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
requires = [
'arrow>=0.12.1,<1.3',
'attrs>=17.4.0',
'charset-normalizer<3',
'docopt>=0.6.2',
'dogpile.cache>=0.6.5,<2',
'pandas>=1.3,<2.1',
'platformdirs<4',
'requests>=2.18.4,<3',
'requests-ftp>=0.3.1,<4',
'sqlalchemy>2,<2.1',
'tabulate>=0.8.2,<0.10',
'tqdm>=4.60,<5',
]
test_requires = [
'datadiff>=2.0,<3',
'marko<3',
'proselint==0.13.0',
'pytest>=6.1.0,<8',
'pytest-cov<5',
'pytest-doctest-ellipsis-markers',
]
setup(name='phenodata',
version='0.13.1',
description='phenodata is an acquisition and processing toolkit for open access phenology data',
long_description=README,
license="AGPL 3, EUPL 1.2",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Natural Language :: German",
"Natural Language :: Latin",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Database",
"Topic :: Education",
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Archiving",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Indexing",
"Topic :: Utilities",
],
author='Andreas Motl',
author_email='andreas.motl@panodata.org',
url='https://github.com/earthobservations/phenodata',
keywords='phenology phenology-data phenology-models phenology-modelling phenometrics '
'opendata scientific research-data dwd gpm usa-npn',
packages=find_packages(),
include_package_data=True,
package_data={
'phenodata': [
'dwd/*.json',
],
},
zip_safe=False,
install_requires=requires,
extras_require={
'sql': ['duckdb>=0.3,<0.8'],
'test': test_requires,
},
entry_points={
'console_scripts': [
'phenodata = phenodata.command:run',
],
},
)