This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (97 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
106 lines (97 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[tool.poetry]
name = "fasterrunner"
version = "3.0.0"
description = ""
authors = ["lihuacai <lihuacai168@gmail.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
aiocontextvars = "0.2.2"
amqp = "^5.2.0"
beautifulsoup4 = "4.6.3"
celery = ">=5.2.7,<5.3.0"
certifi = "2019.9.11"
chardet = "3.0.4"
colorama = "0.4.1"
colorlog = "4.0.2"
contextvars = "2.4"
coreapi = "2.3.3"
coreschema = "0.0.4"
dingtalkchatbot = "1.3.0"
django = "4.1.13"
django-celery-beat = "^2.5.0"
django-cors-headers = "4.3.1"
django-jsonfield = "1.4.0"
django-model-utils = "4.0.0"
django-rest-swagger = "2.2.0"
django-simpleui = "2023.12.12"
django-utils-six = "2.0"
djangorestframework = "3.14.0"
djangorestframework-jwt = "1.11.0"
drf-yasg = "1.21.7"
packaging = "23.2"
har2case = "0.3.1"
idna = "2.8"
inflection = "0.5.0"
jinja2 = "2.10.3"
loguru = "0.5.1"
markupsafe = "1.1.1"
openapi-codec = "1.3.2"
pyjwt = "1.7.1"
pyparsing = "2.4.7"
python-dotenv = "0.10.3"
pytz = "2022.2.1"
pyyaml = ">=5.3.1,<5.4.0"
requests = "2.31.0"
requests-toolbelt = "0.9.1"
simplejson = "3.17.0"
six = "1.16.0"
sqlparse = "0.3.1"
tornado = "6.4"
uritemplate = "3.0.1"
urllib3 = "1.26.18"
django-mysql = "^4.12.0"
json5 = "0.9.5"
django-bulk-update = "2.2.0"
xmltodict = ">=0.12.0,<0.13.0"
genson = ">=1.2.2,<1.3.0"
faker = ">=7.0.1,<7.1.0"
curlify = ">=2.2.1,<2.3.0"
pydash = ">=5.0.1,<5.1.0"
jsonpath = ">=0.82,<1.0"
pydantic = "1.10.17"
gunicorn = "^21.2.0"
sentry-sdk = ">=1.5.8,<1.6.0"
croniter = ">=1.3.5,<1.4.0"
django-log-request-id = ">=2.0.0,<2.1.0"
gevent = ">=23.7.0"
django-filter = ">=2.4.0,<2.5.0"
pymysql = "1.1.0"
cryptography = ">=3.4.8"
python-dateutil = ">=2.8.2"
pytest = "^8.1.1"
pytest-django = "^4.8.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.12.0"
django-db-connection-pool = {extras = ["mysql"], version = "^1.2.5"}
[tool.poetry.group.dev.dependencies]
ruff = "^0.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Set the maximum line length to 120.
line-length = 120
exclude = ["web/*", "**/migrations/*", "static/*", "static_root/*"]
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
# overlap with the use of a formatter, like Black, but we can override this behavior by
# explicitly adding the rule.
extend-select = ["E501"]
select = [
# isort
"I"
]
[tool.ruff.lint.pydocstyle]
convention = "google"