35 lines
602 B
TOML
35 lines
602 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ntr-fetcher"
|
|
version = "0.1.0"
|
|
description = "SoundCloud likes fetcher for Nick the Rat Radio"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi",
|
|
"uvicorn[standard]",
|
|
"httpx",
|
|
"pydantic-settings",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
"pytest-httpx",
|
|
"ruff",
|
|
]
|
|
|
|
[project.scripts]
|
|
ntr-fetcher = "ntr_fetcher.main:run"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
src = ["src"]
|