-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
73 lines (63 loc) · 2.31 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
70
71
72
73
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ehyd-tools"
description = "Reading and analyzing hydro(geo)logic time series from the Austrian government's \"ehyd.gv.at\" platform."
readme = "README.md"
authors = [
{ name = "Markus Pichler", email = "[email protected]" }
]
requires-python = ">=3.7"
keywords = ["austria", "precipitation", "groundwater", "hydrology", "data", "environment", "civil_engineering", "api"]
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 = [
"numpy>=1.14",
"pandas>=1",
"matplotlib>=3",
"requests",
"argh",
]
dynamic = ["version"]
[project.optional-dependencies]
parquet = ["fastparquet", "pyarrow"]
#docs = ["sphinx", "nbsphinx", "recommonmark", "pydata_sphinx_theme", "ipython==8.5.0"]
[project.urls]
#Documentation = "https://markuspic.github.io/intensity_duration_frequency_analysis/"
Changelog = "https://github.com/MarkusPic/ehyd_tools/blob/master/CHANGELOG.md"
homepage = "https://github.com/MarkusPic/ehyd_tools"
funding = "https://www.buymeacoffee.com/MarkusP"
[project.scripts]
ehyd_tools = "ehyd_tools._console_script:command_line_tool"
[tool.setuptools.dynamic]
version = { attr = "ehyd_tools.__version__" }
[tool.setuptools.packages.find]
include = ["ehyd_tools"]
#namespaces = false
[tool.setuptools.package-data]
idf_analysis = ["*.csv", "*.json"]
#"idf_analysis.approaches" = ["*.yaml"]
# https://github.com/python-semantic-release/python-semantic-release
[tool.semantic_release]
branch = "main"
version_variables = ["ehyd_tools/__init__.py:__version__",]
major_on_zero = false
hvcs = "github"
version_source = "tag"
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