-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 873 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "tafakari"
version = "0.2.0"
description = "A simple Reddit clone backend built using Python, Flask, PostgreSQL, and Redis"
authors = ["Gichana <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
flask-sqlalchemy = "^3.0.2"
flask = "^2.2.2"
pendulum = "^2.1.2"
psycopg2 = "^2.9.5"
flask-pydantic = "^0.11.0"
pydantic = { extras = ["dotenv"], version = "^1.10.2" }
flask-bcrypt = "^1.0.1"
click = "^8.1.3"
faker = "^15.3.4"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
sqlalchemy-utils = "0.41.1"
flask-jwt-extended = "^4.4.4"
redis = "^4.4.0"
flask-caching = "^2.0.2"
flask-migrate = "^4.0.4"
flask-limiter = { extras = ["redis"], version = "^3.5.0" }
flask-cors = "^4.0.0"
psycopg2-binary = "^2.9.9"
gunicorn = "^21.2.0"
[build-system]
requires = ["poetry-core>=1.3.2"]
build-backend = "poetry.core.masonry.api"