-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
46 lines (42 loc) · 1.44 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
46
[project]
name = "openet-ssebop"
version = "0.5.0"
authors = [
{ name = "Gabe Parrish", email = "gparrish@contractor.usgs.gov" },
{ name = "Mac Friedrichs", email = "mfriedrichs@contractor.usgs.gov" },
{ name = "Gabriel Senay", email = "senay@usgs.gov" },
]
maintainers = [
{ name = "Charles Morton", email = "charles.morton@dri.edu" }
]
description = "Earth Engine implementation of the SSEBop model"
readme = "README.rst"
requires-python = ">=3.8"
keywords = ["SSEBop", "OpenET", "Earth Engine", "Evapotranspiration", "Landsat"]
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",
"openet-core >= 0.4.0",
"openet-refet-gee >= 0.6.2",
"python-dateutil",
]
[project.urls]
"Homepage" = "https://github.com/Open-ET/openet-ssebop"
# "Repository" = "https://github.com/Open-ET/openet-ssebop.git"
# "Documentation" = "https://github.com/Open-ET/openet-ssebop"
# "Bug Tracker" = "https://github.com/Open-ET/openet-ssebop"
# "Changelog" = "https://github.com/Open-ET/openet-ssebop"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
# include = ["openet*"]
exclude = ["docs*", "examples*", "assets*"]