forked from prayer007/dwdGribExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.02 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
from setuptools import setup, find_packages
import dwdGribExtractor
with open('README.rst') as f:
long_description = f.read()
setup(
name='dwdGribExtractor',
version=dwdGribExtractor.__version__,
author='Manuel Strohmaier',
author_email='[email protected]',
description="API for DWD's open weather grib data.",
long_description=long_description,
long_description_content_type='text/x-rst',
url="https://github.com/prayer007/dwdGribExtractor",
project_urls={
'Documentation': 'https://github.com/prayer007/dwdGribExtractor',
},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=[
'requests>=2.25.1',
'multiprocess>=0.70.11.1',
'xarray>=0.16.2',
'pandas>=1.2.0',
'cfgrib>=0.9.9.0',
'eccodes>=1.2.0',
'netCDF4>=1.5.6'
]
)