-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 750 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 750 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
38
[tool.poetry]
name = "upstream"
version = "0.1.0"
description = ""
authors = ["bennettscience <brian.bennett2@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
Flask = "^2.2.2"
flask-sqlalchemy = "^3.0.1"
Flask-Login = "^0.6.2"
python-dotenv = "^0.21.0"
jinja-partials = "^0.1.1"
htmx-flask = "^0.1.0"
flask-marshmallow = "^0.14.0"
webargs = "^8.2.0"
matplotlib = "^3.6.2"
gunicorn = "^20.1.0"
pandas = "^1.5.2"
pymysql = "^1.1.0"
[tool.poetry.dev-dependencies]
Flask-Migrate = "^3.1.0"
black = "^22.10.0"
flake8 = "^5.0.4"
pre-commit = "^2.20.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.black]
line-length = 88