23 lines
575 B
TOML
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"]
|