blob: 7490bb7e26d593f1d4059f0581c51bad451c96f8 (
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
|
[tool.poetry]
name = "HydroRollCore"
version = "0.0.1"
authors = ["简律纯 <i@jyunko.cn>"]
description = "Core of HydroRoll."
readme = "README.md"
keywords = ["HydroRoll", "core"]
homepage = "https://github.com/HydoRoll-Team/HydroRollCore"
packages = [
{ include = "HydroRollCore", from = "." }
]
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.plugins."poetry-plugin"]
class = "poetry_plugin.plugin.Plugin"
[tool.poetry.scripts]
HydroRollCore = "HydroRollCore.main:main"
[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 = ["HydroRollCore", "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>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|