-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 679 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 679 Bytes
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
[project]
name = "hello"
version = "0.1.0"
description = "An example Flask app running in Docker."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alembic==1.18.4",
"celery==5.6.3",
"flask==3.1.3",
"flask-db==0.4.1",
"flask-debugtoolbar==0.16.0",
"flask-secrets==0.1.0",
"flask-sqlalchemy==3.1.1",
"flask-static-digest==0.4.1",
"gunicorn==25.3.0",
"jinja2==3.1.6",
"psycopg==3.3.3",
"pytest==9.0.2",
"pytest-cov==7.1.0",
"redis==7.4.0",
"ruff==0.15.9",
"setuptools==82.0.1",
"sqlalchemy==2.0.49",
"sqlalchemy-utils==0.42.1",
"werkzeug==3.1.8",
]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = ["I", "SIM"]