-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
55 lines (51 loc) · 1.39 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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name="pyVPRM",
version="5.0",
description="Vegetation Photosynthesis and Respiration Model",
long_description="A tool to calculate the CO2 exchange flux between atmosphere and terrestrial biosphere using the Vegetation Photosynthesis and Respiration Model",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Atmospheric Science",
],
keywords="CO2 Biosphere Atmosphere Physics VPRM",
url="https://github.com/tglauch/pyVPRM/",
author="Theo Glauch",
author_email="theo.glauch@drl.de",
license="MIT",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"xarray",
"xesmf",
"pyproj",
"joblib",
"uuid",
"pandas",
"astropy",
"pyyaml",
"rasterio",
"rioxarray",
"geopandas",
"h5py",
"pytz",
"tzwhere",
"timezonefinder",
"pygrib",
"matplotlib",
"lxml",
"requests",
"statsmodels",
"loguru",
"fiona",
],
include_package_data=True,
zip_safe=False,
)