Files
Tatami/pyproject.toml
T
lars 2c60b83d8a Load Google Maps API key from a .env file
- Add python-dotenv and call load_dotenv() in traveltimes.py before reading
  GOOGLE_MAPS_API_KEY (exported env vars still take precedence).
- Add .env.example template; the real .env stays gitignored.
2026-06-19 14:24:54 +02:00

32 lines
641 B
TOML

[project]
name = "tatami"
version = "0.1.0"
description = "Tool for Arranging Tasty Appointments, Meetings & Invitations"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"numpy>=2.2.4",
"pandas>=2.2.3",
"pandas-stubs>=2.2.3.250308",
"python-dotenv>=1.2.2",
"requests>=2.32.3",
"tqdm>=4.67.1",
"types-requests>=2.32.0.20250328",
"types-tqdm>=4.67.0.20250404",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pytest>=9.1.1",
"ruff>=0.11.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"