forked from TaleLin/lin-cms-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.16 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
[tool.poetry]
name = "lin-cms-flask"
version = "0.4"
description = "🎀A simple and practical CMS implememted by flask"
authors = ["sunlin92 <[email protected]>"]
[[tool.poetry.source]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"
default = true
[tool.poetry.dependencies]
python = "^3.8"
Lin-CMS = "^0.4.10"
pillow = "^9.3.0"
flask-cors = "^3.0.10"
gunicorn = "^20.1.0"
gevent = "^21.12.0"
flask-socketio = "^5.1.1"
blinker = "^1.4"
python-dotenv = "^0.19.2"
gevent-websocket = "^0.10.1"
pydantic = {extras = ["email"], version = "^1.9.0"}
mypy = "^0.950"
Werkzeug = "2.1.2"
[tool.poetry.dev-dependencies]
flask-sqlacodegen = "^1.1.8"
black = "^22.3.0"
isort = "^5.10.1"
watchdog = "^2.1.6"
coverage = "^6.3.2"
pytest = "^6.2.5"
pre-commit = "^2.17.0"
pytest-ordering = "^0.6"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[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"]