nightjetter/pyproject.toml
2025-08-12 13:02:21 +02:00

21 lines
535 B
TOML

[project]
name = "nightjet-price-notifier"
version = "0.1.0"
description = "Continuously monitors nightjet travel dates for price fluctuations"
readme = "README.md"
authors = [{ name = "Marty Oehme", email = "contact@martyoeh.me" }]
requires-python = ">=3.13"
dependencies = ["requests>=2.32.4", "typer>=0.16.0"]
[project.scripts]
nightjet = "nj_api:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
typeCheckingMode = "basic"
[tool.hatch.build.targets.wheel]
packages = ["src/nj_api"]