2026-06-07 14:15:42 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "live-ozan-radio"
|
|
|
|
|
version = "0.1.0"
|
2026-06-07 14:47:47 +01:00
|
|
|
description = "AI radio — DeepSeek DJ + Google Lyria 3, taste from settings and screenshot seeds"
|
2026-06-07 14:15:42 +01:00
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"google-genai>=1.0",
|
|
|
|
|
"httpx>=0.27",
|
|
|
|
|
"python-dotenv>=1.0",
|
|
|
|
|
"uvicorn>=0.30",
|
|
|
|
|
"fastapi>=0.115",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0",
|
|
|
|
|
"ruff>=0.4",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
ozan-radio = "ozan_radio.__main__:main"
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
target-version = "py311"
|
|
|
|
|
line-length = 100
|
|
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
|
2026-06-07 15:33:58 +01:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|