Files
turbosloth/pyproject.toml
2025-07-16 02:15:13 +03:00

38 lines
719 B
TOML

[project]
name = "turbosloth"
version = "0.1.0"
description = "ASGI REST framework for lazy devs"
authors = [
{ name = "nikto_b", email = "niktob560@yandex.ru" }
]
license = "LGPL-3.0-or-later"
requires-python = ">=3.13"
dependencies = [
"megasniff>=0.2.0",
"breakshaft>=0.1.0",
]
[tool.uv.sources]
megasniff = { index = "mypypi" }
breakshaft = { index = "mypypi" }
[[tool.uv.index]]
name = "mypypi"
url = "https://git.nikto-b.ru/api/packages/nikto_b/pypi/simple"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/turbosloth"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"uvicorn>=0.35.0",
]