generated from 0xTheProDev/fastapi-clean-example
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
26 lines (23 loc) · 804 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = "==0.115.0"
sqlalchemy = "==2.0.35"
mysqlclient = "==2.2.4"
uvicorn = {version = "==0.30.6", markers = "sys_platform != 'win32'"} # Exclude on Windows, install manually with --no-binary uvicorn
winloop = {version = "==0.1.6", markers = "sys_platform == 'win32'"} # Include on Windows
uvloop = {version = "==0.20.0", markers = "sys_platform != 'win32'"}
python-dotenv = "==1.0.1"
strawberry-graphql = {extras = ["fastapi"], version = "==0.242.0"}
psycopg2 = "==2.9.9"
pydantic-settings = "==2.5.2"
[dev-packages]
pre-commit = "==3.5.0"
pytest = "==8.3.3"
pytest-cov = "==5.0.0"
black = "==24.8.0"
strawberry-graphql = {extras = ["debug-server"], version = "==0.242.0"}
[requires]
python_version = "3.12"