blob: 9c962484561cc510cdaa7aacf7d9b7ac017dfdf4 (
plain) (
blame)
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
|
[tool.poetry]
name = "HydroRoll"
version = "0.1.3"
description = "bot framework."
authors = ["简律纯 <i@jyunko.cn>"]
license = "GPL3.0"
readme = "README.md"
homepage = "https://hydroroll.retrofor.space/"
repository = "https://github.com/HydroRoll-Team/hydroroll"
documentation = "https://hydroroll.retrofor.space/"
keywords = ["bot", "qq", "qqbot", "mirai", "coolq"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
[tool.poetry.dependencies]
watchfiles = "^0.18.0"
python = "^3.8"
iamai = "^3.14"
iamai-adapter-cqhttp = "^0.6"
iamai-adapter-apscheduler = "^0.6"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
pre-commit = "^3.1.0"
pre-commit-hooks = "^4.4.0"
[tool.black]
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
src_paths = ["hydroroll", "tests"]
extra_standard_library = ["typing_extensions"]
[tool.pyright]
exclude = ["tests"]
pythonVersion = "3.8"
pythonPlatform = "All"
typeCheckingMode = "strict"
reportImportCycles = false
reportIncompatibleMethodOverride = false
reportMissingTypeArgument = false
reportMissingTypeStubs = false
reportUnknownArgumentType = false
reportUnknownLambdaType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUnnecessaryIsInstance = false
[tool.pydantic-pycharm-plugin]
ignore-init-method-arguments = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|