-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 985 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 = "testate"
version = "1.0.0"
description = ""
authors = ["Marco Bakera <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7.3"
# https://flask.palletsprojects.com/en/2.2.x/changes/
Flask = "^2.2.2"
# https://docs.gunicorn.org/en/stable/news.html
gunicorn = "^22.0.0"
# https://flask-sqlalchemy.palletsprojects.com/en/3.0.x/changes/
Flask-SQLAlchemy = "^3.0.0"
# https://github.com/theskumar/python-dotenv/blob/master/CHANGELOG.md
python-dotenv = "^0.21.0"
# https://github.com/maxcountryman/flask-login/blob/main/CHANGES.md
Flask-Login = "^0.6.0"
# https://gitpython.readthedocs.io/en/stable/changes.html
GitPython = "^3.1.27"
# https://openpyxl.readthedocs.io/en/stable/changes.html
openpyxl = "^3.0.9"
# OAuthentication support
Flask-Dance = "^6.2.0"
blinker = "^1.5"
[tool.poetry.dev-dependencies]
pylint = "^2.15.2"
# adhoc ssl support
pyOpenSSL = "^23.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"