-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (47 loc) · 1.18 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "weave"
version = "0.1.0"
description = "Weave is a mentorship platform for medical students."
authors = ["Razzi Abuissa <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
Flask = "^2.3.2"
sentry-sdk = "^1.29.2"
flask-login = "^0.6.2"
structlog = "^23.1.0"
sqlalchemy = "^2.0.20"
flask-basicauth = "^0.2.0"
flask-sqlalchemy = "^3.0.5"
python-dateutil = "^2.8.2"
requests = "^2.31.0"
requests-toolbelt = "^1.0.0"
cloudinary = "^1.34.0"
marshmallow = "^3.20.1"
pytz = "^2023.3"
flask-admin = {git = "https://github.com/razzius/flask-admin"}
gunicorn = "^21.2.0"
psycopg = "^3.1.10"
[tool.poetry.group.dev.dependencies]
ipython = "^8.14.0"
python-dotenv = "^1.0.0"
pytest = "^7.4.0"
pytest-postgresql = "^5.0.0"
pytest-icdiff = "^0.6"
pdbpp = "^0.10.3"
pip = "^23.2.1"
time-machine = "^2.12.0"
requests-mock = "^1.11.0"
flake8 = "^6.1.0"
mypy = "^1.5.1"
types-requests = "^2.31.0.2"
types-python-dateutil = "^2.8.19.14"
poethepoet = "^0.22.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
test = "pytest"
typecheck = "mypy app.py server/ tests/"
lint = "flake8 app.py server/ tests/"