-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "cht_observations"
description = "Download tide gauge observation data"
readme = "README.md"
authors = [
{ name = "Maarten van Ormondt", email = "[email protected]"},
{ name = "Julian Hofer", email = "[email protected]" },
{ name = "Sarwan Peiter", email = "[email protected]" },
]
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.10"
dependencies = ["NDBC", "noaa_coops", "geopandas"]
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest"]
[tool.setuptools]
zip-safe = true
[tool.setuptools.dynamic]
version = { attr = "cht_observations.__version__" }
[tool.setuptools.packages.find]
include = ["cht_observations"]
[tool.setuptools.package-data]
"cht_observations" = ["py.typed"]
# TODO
[project.urls]
Source = "https://github.com/Deltares/cht_observations"
#Documentation = "https://deltares.github.io/Ribasim"