-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
92 lines (90 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup(name='gribmagic',
version='0.2.2',
description='Download of public GRIB1/GRIB2 and netCDF data from numerical weather prediction models',
long_description=README,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Archiving",
"Topic :: Text Processing",
"Topic :: Utilities",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
author='Daniel Lassahn, Andreas Motl',
author_email='[email protected], [email protected]',
url='https://github.com/earthobservations/gribmagic',
keywords='nwp weather data acquisition ' +
'dwd icon cosmo ncep meteofrance arome knmi harmonie',
packages=find_packages(),
include_package_data=True,
package_data={
'gribmagic': [
'unity/knowledge/*.yml',
],
},
zip_safe=False,
install_requires=[
"requests>=2,<2.26",
"cfgrib>=0.9,<1",
"xarray>=0.16,<0.20",
"cdo>=1.5,<1.6",
"cachetools>=4.2,<5",
"PyYAML>=5.3,<5.5",
"dask==2021.9.1",
"click>=8,<9",
"click-option-group>=0.5,<0.6",
"appdirs>=1.4,<2",
"country-bounding-boxes>=0.2,<1",
"funcy>=1,<2",
],
extras_require={
"test": [
"pytest>=6,<7",
"pytest-cov>=2.10,<3",
"pytest-xdist>=2.4,<3",
"mock>=4,<5",
"responses>=0.12,<1",
"freezegun>=1.1,<2",
],
"plotting": [
# We need this version to be compatible with Magics 4.2.6, which is available
# in this version on GHA's `ubuntu-latest` image through package `libmagplus3v5`.
"Magics==1.1.2",
],
},
entry_points={
'console_scripts': [
'gribmagic = gribmagic.commands:cli',
],
},
)