-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
37 lines (35 loc) · 763 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
34
35
36
37
[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.3",
"celery==5.6.2",
"flask==3.1.2",
"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.0.1",
"jinja2==3.1.6",
"psycopg==3.3.2",
"pytest==9.0.2",
"pytest-cov==7.0.0",
"redis==7.1.0",
"requests==2.32.3",
"ruff==0.15.0",
"setuptools==80.10.2",
"sqlalchemy==2.0.46",
"sqlalchemy-utils==0.42.1",
"werkzeug==3.1.5",
"httpx==0.28.1",
"boto3>=1.35.0",
"watchtower>=3.3.0",
]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = ["I", "SIM"]