-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
69 lines (59 loc) · 2.37 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
64
65
66
67
68
69
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "idf-analysis"
description = "heavy rainfall intensity as a function of duration and return period acc. to DWA-A 531 (2012)"
readme = "README.md"
authors = [
{ name = "Markus Pichler", email = "[email protected]" }
]
requires-python = ">=3.7"
keywords = ["duration", "analysis", "rainfall", "dwd", "idf", "measurement-data", "precipitation", "kostra", "dwa", "heavy-rain", "intensity-duration-frequency", "design-rainfall", "duration-steps", "return-period", "dwa-a-531"]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Hydrology",
"Intended Audience :: Science/Research",
]
dependencies = [
"pandas",
"tqdm",
"matplotlib",
"scipy",
"PyYAML>=5",
"sympy"
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["sphinx", "nbsphinx", "recommonmark", "myst-parser", "pydata_sphinx_theme", "ipython==8.5.0", 'sphinx-codeautolink']
[project.urls]
Documentation = "https://markuspic.github.io/intensity_duration_frequency_analysis/"
Changelog = "https://github.com/MarkusPic/intensity_duration_frequency_analysis/blob/main/CHANGELOG.md"
homepage = "https://github.com/MarkusPic/intensity_duration_frequency_analysis"
[project.scripts]
idf_analysis = "idf_analysis._console_script:command_line_tool"
[tool.setuptools.dynamic]
version = { attr = "idf_analysis.__version__" }
[tool.setuptools.packages.find]
include = ["idf_analysis", "idf_analysis.approaches"]
#namespaces = false
[tool.setuptools.package-data]
"idf_analysis.approaches" = ["*.yaml"]
# https://github.com/python-semantic-release/python-semantic-release
[tool.semantic_release]
branch = "main"
version_variables = ["idf_analysis/__init__.py:__version__",]
major_on_zero = false
build_command = "pip install -q build && python -m build"
# https://docs.github.com/en/actions/managing-workflow-runs/skipping-workflow-runs
# [skip actions]
commit_message = "{version}\n\nAutomatically generated by python-semantic-release\n\n[skip actions]"
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true