-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
43 lines (39 loc) · 1.27 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
[project]
name = "openet-refet-gee"
version = "0.6.4"
authors = [
{ name = "Charles Morton", email = "[email protected]" },
]
# maintainers = [
# { name = "Charles Morton", email = "[email protected]" }
# ]
description = "Google Earth Engine based ASCE Standardized Reference Evapotranspiration Functions"
readme = "README.rst"
requires-python = ">=3.8"
keywords = ["RefET", "OpenET", "Earth Engine", "evapotranspiration"]
license = {file = "LICENSE.txt"}
# 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.364",
]
[project.urls]
"Homepage" = "https://github.com/Open-ET/openet-refet-gee"
# "Repository" = "https://github.com/Open-ET/openet-refet-gee.git"
# "Documentation" = "https://github.com/Open-ET/openet-refet-gee"
# "Bug Tracker" = "https://github.com/Open-ET/openet-refet-gee"
# "Changelog" = "https://github.com/Open-ET/openet-refet-gee"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = [
"pytest", "pandas", "pytz"
]
[tool.setuptools.packages.find]
# include = ["openet*"]
exclude = ["docs*", "examples*"]