-
Notifications
You must be signed in to change notification settings - Fork 88
/
pyproject.toml
147 lines (122 loc) · 3.55 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
136
137
138
139
140
141
142
143
144
145
146
147
[build-system]
requires = [
"hatchling",
"hatch-gradle-version>=0.9.5",
]
build-backend = "hatchling.build"
# project metadata
[project]
name = "hexdoc-hexcasting"
description = "Hex Casting web book."
authors = [
{ name="object-Object" },
{ name="Alwinfy" },
]
readme = "doc/README.md"
license = { file = "doc/LICENSE.txt" }
keywords = ["hexdoc"]
requires-python = ">=3.11"
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://hexcasting.hexxy.media/"
Source = "https://github.com/FallingColors/HexMod/"
# Gradle version/deps
[tool.hatch.version]
scheme = "gradle"
source = "gradle-properties"
py-path = "doc/src/hexdoc_hexcasting/__version__.py"
[tool.hatch.metadata.hooks.gradle-properties]
dependencies = [
"hexdoc~=1!0.1.0a11",
{ package="hexdoc-minecraft", op="~=", py-version="1.0.dev", key="minecraftVersion" },
]
[tool.hatch.metadata.hooks.gradle-properties.optional-dependencies]
dev = [
"ruff~=0.1.4",
]
# project structure
[tool.hatch.build]
artifacts = [
"/doc/src/hexdoc_hexcasting/_export/generated",
"/doc/src/hexdoc_hexcasting/__gradle_version__.py",
]
[tool.hatch.build.targets.sdist]
only-include = [
"doc/src/hexdoc_hexcasting",
"gradle.properties",
]
[tool.hatch.build.targets.wheel]
packages = [
"doc/src/hexdoc_hexcasting",
]
# hexdoc
[project.entry-points.hexdoc]
hexcasting = "hexdoc_hexcasting._hooks:HexcastingPlugin"
# Pytest
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
markers = ["template"]
[tool.coverage.report]
include_namespace_packages = true
# formatting and linting
[tool.isort]
profile = "black"
combine_as_imports = true
known_first_party = ["hexdoc_hexcasting"]
[tool.pyright]
pythonVersion = "3.11"
pythonPlatform = "All"
include = [
"doc/src",
]
extraPaths = [
"doc/src",
]
enableExperimentalFeatures = true
# mostly we use strict mode
# but pyright doesn't allow decreasing error severity in strict mode
# so we need to manually specify all of the strict mode overrides so we can do that :/
typeCheckingMode = "basic"
strictDictionaryInference = true
strictListInference = true
strictSetInference = true
reportAssertAlwaysTrue = "error"
reportConstantRedefinition = "error"
reportDeprecated = "error"
reportDuplicateImport = "error"
reportFunctionMemberAccess = "error"
reportIncompatibleMethodOverride = "error"
reportIncompatibleVariableOverride = "error"
reportIncompleteStub = "error"
reportInconsistentConstructor = "error"
reportInvalidStringEscapeSequence = "error"
reportInvalidStubStatement = "error"
reportInvalidTypeVarUse = "error"
reportMatchNotExhaustive = "error"
reportMissingParameterType = "error"
reportMissingTypeStubs = "error"
reportOverlappingOverload = "error"
reportSelfClsParameterName = "error"
reportTypeCommentUsage = "error"
reportUnknownParameterType = "error"
reportUnnecessaryCast = "error"
reportUnnecessaryContains = "error"
reportUnsupportedDunderAll = "error"
reportUntypedBaseClass = "error"
reportUntypedClassDecorator = "error"
reportUntypedFunctionDecorator = "error"
reportUntypedNamedTuple = "error"
reportWildcardImportFromLibrary = "error"
reportMissingTypeArgument = "warning"
reportPrivateUsage = "warning"
reportUnknownArgumentType = "warning"
reportUnknownLambdaType = "warning"
reportUnknownMemberType = "warning"
reportUnknownVariableType = "warning"
reportUnnecessaryComparison = "warning"
reportUnnecessaryIsInstance = "warning"
reportUnusedClass = "warning"
reportUnusedExpression = "warning"
reportUnusedFunction = "warning"
reportUnusedImport = "warning"
reportUnusedVariable = "warning"