forked from JPL-Evapotranspiration-Algorithms/PT-JPL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 866 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "PTJPL"
version = "1.0.3"
description = "Priestley-Taylor Jet Propulsion Laboratory Evapotranspiration Model"
readme = "README.md"
authors = [
{ name = "Gregory Halverson", email = "gregory.h.halverson@jpl.nasa.gov" },
{ name = "Joshua B. Fisher", email = "jbfisher@chapman.edu" },
{ name = "Claire S. Villanueva-Weeks", email = "claire.s.villanueva-weeks@jpl.gov" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"ECOv002-CMR",
"ECOv002-granules",
"geos5fp",
"numpy",
"pandas",
"rasters",
"scikit-learn"
]
requires-python = ">=3.11"
[tool.setuptools.package-data]
PTJPL = ["*.txt", "*.tif"]
[project.urls]
"Homepage" = "https://github.com/JPL-Evapotranspiration-Algorithms/PTJPL"