Migrate project to uv and add Docker CI
This commit is contained in:
21
pyproject.toml
Normal file
21
pyproject.toml
Normal file
@@ -0,0 +1,21 @@
|
||||
[project]
|
||||
name = "shopping-list-api"
|
||||
version = "0.1.0"
|
||||
description = "FastAPI service for managing shopping lists, products, and list items backed by SQLite."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"fastapi>=0.115,<1.0",
|
||||
"pydantic>=2.0,<3.0",
|
||||
"uvicorn>=0.34,<1.0",
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"httpx>=0.28,<1.0",
|
||||
"pytest>=8.0,<9.0",
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-q"
|
||||
testpaths = ["test_main.py"]
|
||||
Reference in New Issue
Block a user