-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "SportTracker"
version = "1.32.0"
description = "Self-hosted sport data tracking server."
license = "GPL-3.0-or-later"
authors = ["deadlocker8"]
[[tool.poetry.source]]
name = "TheCodeLabs"
url = "https://pypi.thecodelabs.de"
priority = "explicit"
[tool.poetry.dependencies]
python = "^3.12"
thecodelabs-baseutils = { version = "*", source = "TheCodeLabs" }
thecodelabs-flaskutils = { version = "*", source = "TheCodeLabs" }
flask = "3.1.0"
gevent = "24.11.1"
click = "8.1.8"
Flask-SQLAlchemy = "3.1.1"
Flask-Pydantic = "0.12.0"
Flask-Login = "0.6.3"
Flask-Bcrypt = "1.0.1"
Flask-Migrate = "4.0.7"
flask-babel = "4.0.0"
python-dateutil = "2.9.0.post0"
psycopg2 = "2.9.10"
gpxpy = "1.6.2"
faker = "33.1.0"
pillow = "11.0.0"
fitdecode = "0.10.0"
[tool.poetry.dev-dependencies]
ruff = "0.8.4"
pre-commit = "4.0.1"
mypy = "1.14.1"
pytest = "8.3.4"
pytest-selenium = "4.1.0"
selenium = "4.27.1"
types-python-dateutil = "*"
types-requests = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
check_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"flask_babel.*",
"flask_bcrypt.*",
"flask_login.*",
"flask_pydantic.*",
"flask_migrate.*",
"TheCodeLabs_BaseUtils.*",
"TheCodeLabs_FlaskUtils.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
pythonpath = "sporttracker"