forked from it-goats/it-goats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 722 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 722 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
36
37
[tool.poetry]
name = "bode"
version = "0.1.0"
description = ""
authors = ["Jan Zborowski <janzborowski99@gmail.com>"]
[tool.black]
line-length = 120
[tool.isort]
profile = 'black'
lines_between_types = 1
combine_as_imports = true
[tool.poetry.dependencies]
python = "^3.10"
Flask = "^2.0.3"
Flask-SQLAlchemy = "^2.5.1"
Flask-Migrate = "^3.1.0"
Flask-Cors = "^3.0.10"
flask-smorest = "^0.37.0"
psycopg2 = "^2.9.3"
flake8-print = "^4.0.0"
python-dateutil = "^2.8.2"
gunicorn = "^20.1.0"
schedule = "^1.1.0"
sendgrid = "^6.9.7"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^4.0.1"
black = "^22.1.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"