-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 813 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
[tool.poetry]
name = "prijatelitree"
version = "0.1.0"
description = "A FastAPI application used to play lab games and collect survey data."
authors = ["Ari Anisfeld", "Pepi Pandiloski"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.103.1"
uvicorn = {extras = ["standard"], version = "^0.23.2"}
alembic = "^1.12.0"
asyncpg = "^0.28.0"
sqlalchemy = "^2.0.22"
fastapi-login = "^1.9.1"
fastapi-sqlalchemy = "^0.2.1"
psycopg2 = "^2.9.9"
python-dotenv = "^1.0.0"
pyi18n-v2 = "^1.2.1"
jinja2 = "^3.1.2"
python-multipart = "^0.0.6"
pytest = "^7.4.3"
requests = "^2.31.0"
sqlmodel = "^0.0.14"
httpx = "^0.26.0"
pandas = "^2.1.4"
openpyxl = "^3.1.2"
bcrypt = "4.0.1"
passlib = "^1.7.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"