Files
meta_api_grabber/pyproject.toml

25 lines
510 B
TOML

[project]
name = "meta-api-grabber"
version = "0.1.0"
description = "View manager for TimescaleDB with metadata handling"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"asyncpg>=0.30.0",
"python-dotenv>=1.1.1",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.25.0",
]
[project.scripts]
view-manager-setup = "meta_api_grabber.setup_and_wait:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"