-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathPipfile
More file actions
22 lines (19 loc) · 514 Bytes
/
Pipfile
File metadata and controls
22 lines (19 loc) · 514 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = "==0.75.1"
sqlalchemy = "==1.4.35"
mysqlclient = "==2.1.0"
uvicorn = {extras = ["standard"], version = "==0.17.6"}
python-dotenv = "==0.20.0"
strawberry-graphql = {extras = ["fastapi"], version = "==0.114.0"}
[dev-packages]
pre-commit = "==2.18.1"
pytest = "==7.1.2"
pytest-cov = "==3.0.0"
black = "==22.3.0"
strawberry-graphql = {extras = ["debug-server"], version = "==0.114.0"}
[requires]
python_version = "3.8"