-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (42 loc) · 953 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
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "coalics"
version = "1.0.0"
description = ""
license = "MIT"
authors = ["Paul Gessinger <[email protected]>"]
packages = [
{ include = "coalics", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
flask = "^1.1.2"
redis = "^3.5.3"
Flask-Migrate = "^2.5.3"
flask_sqlalchemy = "^2.4.4"
flask-login = "^0.5.0"
alembic = "^1.4.2"
Flask-Session = "^0.3.2"
WTForms = "^2.3.1"
requests = "^2.24.0"
icalendar = "^4.0.6"
pytz = "^2020.1"
tzlocal = "^2.1"
python-dotenv = "^0.14.0"
bcrypt = "^3.1.7"
passlib = "^1.7.2"
SQLAlchemy = "^1.4.25"
SQLAlchemy-Utils = "^0.37.8"
pytest = "^6.2.5"
psycopg2-binary = "^2.9.2"
MarkupSafe = "2.0.1"
prometheus-client = "^0.14.1"
prometheus-flask-exporter = "^0.20.3"
Flask-HTTPAuth = "^4.7.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pytest = "^6.0.1"
flake8 = "^3.8.3"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"