-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
45 lines (41 loc) · 1.36 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "openet-ptjpl"
version = "0.3.1"
authors = [
{ name = "Gregory Halverson", email = "[email protected]" },
{ name = "Josh Fisher", email = "[email protected]" },
]
maintainers = [
{ name = "Gregory Halverson", email = "[email protected]" },
]
description = "Earth Engine implementation of the PTJPL model"
readme = "README.rst"
requires-python = ">=3.8"
keywords = ["PTJPL", "OpenET", "Earth Engine", "Evapotranspiration", "Landsat"]
license = {file = "LICENSE"}
# license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"earthengine-api >= 0.1.367",
"openet-core >= 0.4.0",
# "openet-refet-gee >= 0.2.0",
"python-dateutil",
]
[project.urls]
"Homepage" = "https://github.com/Open-ET/openet-ptjpl"
# "Repository" = "https://github.com/Open-ET/openet-ptjpl.git"
# "Documentation" = "https://github.com/Open-ET/openet-ptjpl"
# "Bug Tracker" = "https://github.com/Open-ET/openet-ptjpl"
# "Changelog" = "https://github.com/Open-ET/openet-ptjpl"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
# include = ["openet*"]
exclude = ["examples*"]