-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (44 loc) · 1.15 KB
/
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
46
47
48
49
[tool.poetry]
name = "member-database"
version = "0.11.1"
description = "Our PeP database solution for members and events"
authors = ["Kevin Heinicke <[email protected]>", "Maximilian Linhoff <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
flask = "^2.3"
flask-sqlalchemy = "^3.1.1"
sqlalchemy = "^2.0"
flask-migrate = "^4.0"
flask-mail = "^0.9.1"
python-dotenv = "^0.10"
flask-login = "^0.6"
flask-wtf = "^1.0"
flask-babel = "^1"
jsonschema = "^3.1"
bootstrap-flask = "^2.2"
flask-admin = "^1.6.0"
backoff = "^1.10.0"
gunicorn = {version = "^22.0", optional = true}
psycopg2-binary = {version = "^2.9", optional = true}
email-validator = "^1.1"
flask-cors = "^5.0.0"
[tool.poetry.extras]
deploy = ["gunicorn", "psycopg2-binary"]
[tool.poetry.group.dev.dependencies]
beautifulsoup4 = "^4.8"
blinker = "^1.4"
coverage-badge = "^1.0"
httpie = "^3.1"
ipython = "^8.10"
pre-commit = "^2.21.0"
pyflakes = "^2.1"
pytest = "^7.1"
pytest-cov = "^3.0"
ruff = "^0.1.7"
[tool.ruff]
# Set the maximum line length to 79.
line-length = 79
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"