-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 995 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
34
[project]
name = "openet-core"
version = "0.6.0"
authors = [
{ name="Charles Morton", email="[email protected]" },
]
description = "OpenET Core Components"
readme = "README.rst"
requires-python = ">=3.8"
keywords = ["OpenET", "Earth Engine", "Evapotranspiration", "Landsat"]
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",
"python-dateutil",
]
[project.urls]
"Homepage" = "https://github.com/Open-ET/openet-core"
#"Repository" = "https://github.com/Open-ET/openet-core.git"
#"Documentation" = "https://github.com/Open-ET/openet-core"
#"Bug Tracker" = "https://github.com/Open-ET/openet-core"
#"Changelog" = "https://github.com/Open-ET/openet-core"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = ["pytest"]