-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1009 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
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "drydowns"
version = "0.0.1"
description = "Code for identifying and characterizing drydown events from soil moisture data"
authors = [
{ name = "Ryoko Araki", email = "[email protected]"},
{ name = "Bryn Morgan", email = "[email protected]" }
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["soil moisture", "plant water use", "hydrology", "ecohydrology"]
requires-python = ">=3.10"
dynamic = ["dependencies"]
[project.urls]
homepage = "https://github.com/ecohydro/drydowns"
# documentation =
# repository = "https://github.com/ecohydro/drydowns.git"
# changelog = "https://github.com/ecohydro/drydowns/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["drydowns*"]