-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "cht_meteo"
#TODO
#description = "Combining of tidal components to time series"
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 = ["numpy", "scipy", "pandas", "geopandas", "siphon", "xarray", "shapely", "pyproj", "netCDF4", "metpy", "pyyaml", "psutil", "cht_cyclones", "geojson"]
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest"]
[tool.setuptools]
zip-safe = true
[tool.setuptools.dynamic]
version = { attr = "cht_meteo.__version__" }
[tool.setuptools.packages.find]
include = ["cht_meteo","cht_meteo.*"]
exclude = ["tests","tests.*"]
[tool.setuptools.package-data]
"cht_observations" = ["py.typed"]
# TODO
[project.urls]
Source = "https://github.com/Deltares/cht_meteo"
#Documentation = "https://deltares.github.io/CoastalHazardTools"
[tool.bumpver]
current_version = "0.1.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"README.md" = [
"{version}",
"{pep440_version}",
]
"cht_meteo/__init__.py" = ["{__version__}"]
"cht_meteo/misc/__init__.py" = ["{__version__}"]