19 lines
419 B
TOML
19 lines
419 B
TOML
[project]
|
|
name = "nyeki-api"
|
|
version = "1.0.0"
|
|
description = "A simple API to solve my own needs."
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.128.0",
|
|
"httpx>=0.28.1",
|
|
"nanoid>=2.0.0",
|
|
"orjson>=3.11.5",
|
|
"python-dotenv>=1.2.1",
|
|
"redis>=8.0.1",
|
|
"tortoise-orm[accel,asyncpg]>=1.1.7",
|
|
]
|
|
|
|
[tool.tortoise]
|
|
tortoise_orm = "nyekiapi.lib.settings.DATABASE"
|