mirror of
https://github.com/jdejaegh/irm-kmi-api.git
synced 2025-06-26 20:05:40 +02:00
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "irm-kmi-api"
|
|
version = "1.0.3"
|
|
description = "Retrieve data from the Belgian IRM KMI in Python"
|
|
readme = "README.md"
|
|
authors = [{ name = "Jules Dejaeghere", email = "curable.grass491@mailer.me" }]
|
|
license = { file = "LICENSE" }
|
|
classifiers = [
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
keywords = ["weather", "weather-api", "netherlands", "weather-forecast", "pollen", "belgium", "luxembourg", "rain-radar"]
|
|
dependencies = [
|
|
"aiohttp>=3.11.0,<4.0.0",
|
|
"svgwrite>=1.4.3,<2.0.0",
|
|
]
|
|
requires-python = ">=3.12"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/jdejaegh/irm-kmi-api"
|
|
|
|
[tool.setuptools]
|
|
packages = ["irm_kmi_api", "irm_kmi_api.resources"]
|
|
|
|
[tool.bumpver]
|
|
current_version = "1.0.3"
|
|
version_pattern = "MAJOR.MINOR.PATCH"
|
|
commit_message = "bump version {old_version} -> {new_version}"
|
|
tag_message = "{new_version}"
|
|
tag_scope = "default"
|
|
pre_commit_hook = ""
|
|
post_commit_hook = ""
|
|
commit = true
|
|
tag = true
|
|
push = true
|
|
|
|
[tool.bumpver.file_patterns]
|
|
"pyproject.toml" = [
|
|
'current_version = "{version}"',
|
|
'version = "{version}"'
|
|
]
|
|
"irm_kmi_api/__init__.py" = ["{version}"]
|
|
|