-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.3 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
56
57
58
59
60
61
62
63
64
[project]
name = "app"
version = "0.6"
description = "🎀A simple and practical CMS implememted by flask"
requires-python = ">=3.9,<3.14"
authors = [
{name = "sunlin92", email = "sun.melodies@gmail.com"}
]
dependencies = [
"Flask==3.1.0",
"Flask-JWT-Extended==4.7.1",
"Flask-SQLAlchemy==3.1.1",
"WTForms==3.2.1",
"tablib==3.8.0",
"spectree==1.4.5",
"pillow>=11.1.0",
"flask-cors>=5.0.1",
"gunicorn>=23.0.0",
"gevent>=24.1.1",
"flask-socketio>=5.5.1",
"blinker>=1.9.0",
"python-dotenv>=1.0.1",
"gevent-websocket>=0.10.1",
"pydantic[email]>=1.10.21,<2.0.0",
]
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"watchdog>=6.0.0",
"coverage>=7.6.12",
"pytest>=8.3.5",
"pre-commit>=4.1.0",
"pytest-order>=1.3.0",
"flake8>=7.1.2",
"mypy>=1.15.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"
priority = "primary"
[tool.isort]
multi_line_output = 3
force_grid_wrap = 0
line_length = 120
use_parentheses = true
include_trailing_comma = true
[tool.black]
line_length = 120
[tool.mypy]
files = ["starter.py"]
ignore_missing_imports = true
[tool.pytest]
testpaths = ["tests"]