image_server/pyproject.toml
2026-04-23 22:11:51 -05:00

41 lines
671 B
TOML

[project]
name = "file-server"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"black>=26.3.1",
"fastapi>=0.128.0",
"uvicorn>=0.40.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.15.5",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py313"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
ignore = []
[tool.ruff.format]
quote-style = "double"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.5",
]