daily/pyproject.toml

26 lines
550 B
TOML
Raw Normal View History

2025-02-09 14:38:59 -08:00
[project]
name = "daily"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "GitMatt", email = "git@publicmatt.com" }]
requires-python = ">=3.12"
dependencies = [
"click>=8.1.8",
2025-02-23 19:32:17 -08:00
"duckdb>=1.2.0",
2025-02-09 14:38:59 -08:00
"option>=2.1.0",
2025-02-23 19:32:17 -08:00
"pandas>=2.2.3",
2025-02-09 14:38:59 -08:00
"pydanclick>=0.4.0",
"pydantic>=2.10.6",
"pydantic-settings>=2.7.1",
"requests>=2.32.3",
2025-02-23 19:32:17 -08:00
"requests-cache>=1.2.1",
2025-02-09 14:38:59 -08:00
]
[project.scripts]
daily = "daily:cli.cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"