-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 965 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "quiz-app"
version = "1.0.0"
description = "A full-stack Quiz Application with GitHub OAuth, multiple-choice questions, and Parsons Problems"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Proprietary"}
authors = [
{name = "Jay Sausa", email = "developer@league.dev"}
]
keywords = ["quiz", "education", "fastapi", "react"]
dependencies = [
"fastapi>=0.128.0",
"uvicorn>=0.32.0",
"sqlalchemy>=2.0.36",
"aiosqlite>=0.19.0",
"authlib>=1.6.5",
"httpx>=0.26.0",
"itsdangerous>=2.1.2",
"python-multipart>=0.0.22",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.26.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[tool.hatch.build.targets.wheel]
packages = ["backend"]