hatiko_task/api/pyproject.toml

31 lines
592 B
TOML

[project]
name = "api"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "matv864", email = "matv864@gmail.com" }
]
dependencies = [
"fastapi[standard]>=0.115.7",
"pydantic>=2.10.5",
"pydantic-settings>=2.7.1",
"requests>=2.32.3",
"aiohttp>=3.11.11",
]
readme = "README.md"
requires-python = ">= 3.12"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/api"]