-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (58 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
62 lines (58 loc) · 1.65 KB
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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name="pyVPRM",
version="6.0.3",
description="Vegetation Photosynthesis and Respiration Model",
long_description="pyVPRM is a framework for data-driven modelling and interpreting atmosphere-biosphere CO2 fluxes — from eddy-covariance towers to the global scale.",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Programming Language :: Python :: 3.14"
],
keywords="CO2 Biosphere Atmosphere Physics VPRM Partitioning Neural-Networks GPP NEE Respiration",
url="https://github.com/tglauch/pyVPRM/",
author="Theo Glauch",
author_email="theo.glauch@dlr.de",
license="MIT",
packages=find_packages(),
package_data={"pyVPRM": ["vprm_configs/*.yaml"]},
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"xarray",
"xesmf",
"pyproj",
"joblib",
"pandas",
"astropy",
"pyyaml",
"rasterio",
"rioxarray",
"geopandas",
"h5py",
"pytz",
"tzwhere",
"timezonefinder",
"pygrib",
"matplotlib",
"lxml",
"requests",
"statsmodels",
"loguru",
"fiona",
"pykalman",
"numexpr",
"cartopy",
"planetary_computer",
"aiohttp",
"zarr"
],
zip_safe=False,
)