-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpyproject.toml
135 lines (121 loc) · 3.35 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[tool.poetry]
name = "omega-miya"
version = "0.9.1"
description = "基于 nonebot2 的多平台机器人"
authors = ["Ailitonia <41713304+Ailitonia@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
nonebot2 = { version = "2.4.1", extras = ["fastapi", "aiohttp", "httpx", "websockets"] }
pydantic = ">=2.10.1,<3.0.0"
nonebot-adapter-console = ">=0.6.0,<1.0.0"
nonebot-adapter-onebot = ">=2.4.6,<2.5.0"
nonebot-adapter-qq = ">=1.6.0,<1.7.0"
nonebot-adapter-telegram = ">=0.1.0b20,<0.2.0"
nonebot-plugin-apscheduler = ">=0.5.0,<1.0.0"
sqlalchemy = ">=2.0.36,<3.0.0"
asyncmy = {version = ">=0.2.9,<1.0.0", optional = true}
aiomysql = {version = ">=0.2.0,<1.0.0", optional = true}
asyncpg = { version = ">=0.30.0,<1.0.0", optional = true }
aiosqlite = {version = ">=0.20.0,<1.0.0", optional = true}
apscheduler = ">=3.11.0,<4.0.0"
aiofiles = ">=24.0.0,<25.0.0"
ujson = ">=5.10.0,<6.0.0"
lxml = ">=5.3.0,<6.0.0"
msgpack = ">=1.0.8,<2.0.0"
numpy = ">=2.1.3,<3.0.0"
matplotlib = ">=3.10.0,<4.0.0"
pillow = ">=11.0.0,<12.0.0"
imageio = ">=2.36.0,<3.0.0"
psutil = ">=6.1.0,<7.0.0"
pycryptodome = ">=3.21.0,<4.0.0"
py7zr = ">=0.21.0,<1.0.0"
pytz = "^2024.2"
zhconv = ">=1.4.3,<2.0.0"
rapidfuzz = ">=3.11.0,<4.0.0"
emoji = ">=2.14.0,<3.0.0"
openpyxl = ">=3.1.2,<4.0.0"
qrcode = { extras = ["pil"], version = ">=8.0.0,<9.0.0" }
onedice = "1.0.7"
jieba = ">=0.42.1,<1.0.0"
wordcloud = ">=1.9.4,<2.0.0"
[tool.poetry.extras]
mysql = ["asyncmy", "aiomysql"]
pgsql = ["asyncpg"]
sqlite = ["aiosqlite"]
[tool.poetry.group.dev.dependencies]
mypy = ">=1.14.0,<2.0.0"
ruff = ">=0.8.4,<1.0.0"
bump-pydantic = "^0.8.0"
types-lxml = "^2024.3.27"
lxml-stubs = "^0.5.1"
alembic = "^1.14.0"
memory-profiler = ">=0.61.0,<1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".github",
".hg",
".idea",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
line-length = 120
indent-width = 4
target-version = "py312" # Assume Python 3.12
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = [
"F", # Pyflakes
"E", # pycodestyle Error (E)
"W", # pycodestyle Warning (W)
"I001", # unsorted-imports
"UP", # pyupgrade (UP)
"C4", # flake8-comprehensions (C4)
"T10", # flake8-debugger (T10)
"T20", # flake8-print (T20)
"PYI", # flake8-pyi (PYI)
"PT", # flake8-pytest-style (PT)
"Q", # flake8-quotes (Q)
"NPY", # NumPy-specific rules (NPY)
"FAST", # FastAPI (FAST)
]
ignore = [
"E402", # module-import-not-at-top-of-file
"C901", # complex-structure
"PT023", # pytest-incorrect-mark-parentheses-style
]
flake8-quotes.inline-quotes = "single"
[tool.ruff.format]
quote-style = "single" # Use single quotes for strings.
indent-style = "space" # Indent with spaces, rather than tabs.