[project]
name = "opening_hours_py"
description = "A parser for the opening_hours fields from OpenStreetMap."
keywords = ["openstreetmap", "parser", "time", "schedule"]
homepage = "https://github.com/remi-dupre/opening-hours-rs/tree/master/opening-hours-py"
documentation = "https://remi-dupre.github.io/opening-hours-rs/opening_hours.html"
repository = "https://github.com/remi-dupre/opening-hours-rs"
changelog = "https://github.com/remi-dupre/opening-hours-rs/blob/master/CHANGELOG.md"
readme = "opening-hours-py/README.md"
authors = [{name = "Rémi Dupré", email = "remi+openinghours@dupre.io"}]
requires-python = "~=3.10"
version = "1.2.1"
dynamic = ["license", "license-files"]
[dependency-groups]
lint = ["ruff (~=0.15)"]
publish = ["maturin (>=1)", "pdoc (>=16)"]
test = ["pytest", "pytest-cov[all]"]
dev = [
{include-group = "lint"},
{include-group = "test"},
{include-group = "publish"},
]
[build-system]
requires = ["poetry>=0.12", "maturin>=1,<2"]
build-backend = "maturin"
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.test]
optional = true
[tool.poetry.group.publish]
optional = true
[tool.maturin]
manifest-path = "opening-hours-py/Cargo.toml"
features = [
"pyo3/extension-module",
]