-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (54 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
55 lines (54 loc) · 1.25 KB
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
52
53
54
55
[project]
name = "xl-auth"
version = "1.12.0"
readme = "README.md"
requires-python = "==3.9.*"
dependencies = [
"alembic==1.6.5",
"babel==2.9.1",
"click==8.1.6",
"email-validator==2.0.0.post2",
"flask==2.2.5",
"flask-babel==2.0.0",
"flask-bcrypt==1.0.1",
"flask-caching>=2.0.2",
"flask-cors==4.0.2",
"flask-debugtoolbar==0.13.1",
"flask-emails==0.4",
"flask-login==0.6.2",
"flask-migrate==3.0.1",
"flask-oauthlib==0.9.6",
"flask-sqlalchemy==3.0.5",
"flask-static-digest==0.2.1",
"flask-wtf==1.1.1",
"gunicorn==23.0.0",
"itsdangerous==2.1.2",
"jinja2==3.1.6",
"markupsafe==2.1.3",
"psycopg2-binary==2.9.6",
"pytz==2023.3",
"requests==2.32.0",
"sh==1.12.14",
"sqlalchemy==1.4.18",
"urllib3==1.26.19",
"werkzeug==2.2.3",
"wtforms==3.0.1",
]
[dependency-groups]
dev = [
"coverage==4.4.1",
"factory-boy==2.9.2",
"flake8==6.0.0",
"flake8-blind-except==0.2.1",
"flake8-debugger==4.1.2",
"flake8-docstrings==1.7.0",
"flake8-isort==6.0.0",
"flake8-junit-report==2.1.0",
"flake8-quotes==3.3.2",
"flask-shell-ipython==0.3.1",
"isort==5.12.0",
"lxml==4.9.3",
"pep8-naming==0.13.3",
"pytest==7.4.0",
"webtest==3.0.0",
]