feat: remove stamp_ prefix from directories

This commit is contained in:
Stijnvandenbroek
2025-06-29 11:34:40 +02:00
parent fd1229c8f3
commit 16e2032f9e
32 changed files with 7 additions and 7 deletions

26
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[project]
name = "stamp"
version = "0.1.0"
description = "A quiz application called Stamp that allows users to take quizzes."
readme = "README.md"
requires-python = ">=3.12"
[dependency-groups]
main = [
"fastapi >= 0.115.5",
"uvicorn >= 0.32.0",
"pandas >= 2.2.3",
"python-multipart >= 0.0.20",
]
dev = [
"pytest",
"pytest-asyncio",
"httpx",
]
lint = [
"ruff",
"mypy"
]
[tool.uv]
default-groups = ["main", "dev", "lint"]