-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 913 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
[project]
name = "framework-benchmark"
version = "0.1.0"
description = "Benchmark comparing Django-Bolt, Django Ninja, FastAPI, and Litestar"
requires-python = ">=3.12"
dependencies = [
# FastAPI
"fastapi>=0.127.0",
"uvicorn[standard]>=0.32.0",
# Litestar
"litestar[standard]>=2.19.0",
# Django + Django Ninja + Django Bolt + Django REST Framework
"django>=5.0",
"django-ninja>=1.5.1",
"django-bolt==0.4.7",
"djangorestframework>=3.15.0",
# Async SQLite for FastAPI ORM tests
"sqlalchemy[asyncio]>=2.0.0",
"aiosqlite>=0.20.0",
# Shared
"msgspec>=0.19.0",
"orjson>=3.10.0",
# Graphing
"matplotlib>=3.9.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28.0",
"pytest>=8.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["shared", "django_project"]