victron-shedule-generator/pyproject.toml
Bartosz Wieczorek 87c6938dd6 fix package
2025-09-09 15:39:24 +02:00

23 lines
575 B
TOML

[build-system]
requires = ["hatchling>=1.24"]
build-backend = "hatchling.build"
[project]
name = "victron_shedule_generator"
version = "0.1.1"
description = "Victron/PG price tools"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Bartosz", email = "bartosz@example.com" }]
dependencies = [
"psycopg[binary,pool]>=3.2",
]
[project.optional-dependencies]
pg = ["psycopg[binary]>=3.2"]
dev = ["black", "ruff", "pytest"]
[tool.hatch.build.targets.wheel]
packages = ["src/victron_energy_price_calculator"]