random-access/pyproject.toml
2025-06-25 11:49:01 -04:00

34 lines
No EOL
734 B
TOML

[project]
name = "random-access"
version = "0.0.1"
description = "A minimal FastAPI app with Click and Hatch"
authors = [{ name = "Micha R. Albert", email = "info@micha.zone" }]
dependencies = [
"fastapi~=0.115.12",
"uvicorn[standard]~=0.34.2",
"click~=8.2.1",
"argon2-cffi~=23.1.0",
"tortoise-orm[accel]~=0.25.0",
"slack-bolt~=1.23.0",
"python-dotenv==1.1.0",
"aiohttp~=3.12.11 "
]
requires-python = ">=3.12"
[project.scripts]
random-access-server = "random_access.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = [
"src/random_access"
]
exclude = [
"*.db*"
]