-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (39 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (39 loc) · 1.01 KB
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
45
46
47
48
49
[tool.poetry]
name = "orm-performance-test"
version = "0.1.0"
description = "Performance comparison between SQLAlchemy v2, Tortoise ORM, and EdgeDB with FastAPI"
authors = ["Your Name <your.email@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.104.1"
uvicorn = {extras = ["standard"], version = "^0.24.0"}
gunicorn = "^21.2.0"
# SQLAlchemy v2 dependencies
sqlalchemy = "^2.0.23"
greenlet = "^3.0.1"
asyncpg = "^0.29.0"
# Tortoise ORM dependencies
tortoise-orm = {extras = ["asyncpg"], version = "^0.20.0"}
# EdgeDB dependencies
# Testing dependencies
locust = "^2.17.0"
httpx = "^0.25.2"
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
# Additional utilities
pydantic = "^2.5.0"
python-dotenv = "^1.0.0"
gel = "^3.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
isort = "^5.12.0"
flake8 = "^6.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"