-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
207 lines (185 loc) · 4.91 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "fix_lwjgl"
dynamic = ["version"]
authors = [
{ name="CoolCat467", email="[email protected]" },
]
description = "Fix LWJGL (Light Weight Java Game Library) version used in Minecraft for ARM devices"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment",
"Operating System :: OS Independent",
"Framework :: Trio",
"Typing :: Typed",
]
keywords = [
"minecraft", "raspberry-pi", "lwjgl", "lwjgl2", "lwjgl3",
"wrapper-script"
]
dependencies = [
"trio~=0.27.0",
"httpx~=0.27.0",
]
[tool.setuptools.dynamic]
version = {attr = "fix_lwjgl.__init__.__version__"}
[project.urls]
"Source" = "https://github.com/CoolCat467/fix-lwjgl"
"Bug Tracker" = "https://github.com/CoolCat467/fix-lwjgl/issues"
[project.scripts]
fix_lwjgl_wrapper = "fix_lwjgl:cli_run"
[tool.setuptools.package-data]
fix_lwjgl = ["py.typed"]
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_decorated = true
disallow_any_generics = true
disallow_any_unimported = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true
local_partial_types = true
no_implicit_optional = true
no_implicit_reexport = true
show_column_numbers = true
show_error_codes = true
show_traceback = true
strict = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.codespell]
ignore-words-list = "astroid,crasher,asend"
[tool.pycln]
all = true
disable_all_dunder_policy = true
[tool.black]
line-length = 79
target-version = ['py38']
[tool.ruff]
line-length = 79
fix = true
include = ["*.py", "*.pyi", "**/pyproject.toml"]
[tool.ruff.lint]
select = [
"A", # flake8-builtins
"ASYNC", # flake8-async
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"COM", # flake8-commas
"D", # pydocstyle
"E", # Error
"EXE", # flake8-executable
"F", # pyflakes
"FA", # flake8-future-annotations
"I", # isort
"N", # pep8-naming
"PIE", # flake8-pie
"PT", # flake8-pytest-style
"PYI", # flake8-pyi
"Q", # flake8-quotes
"RET", # flake8-return
"RUF", # Ruff-specific rules
"S", # flake8-bandit
"SIM", # flake8-simplify
"SLOT", # flake8-slots
"TCH", # flake8-type-checking
"UP", # pyupgrade
"W", # Warning
"YTT", # flake8-2020
]
extend-ignore = [
"E501", # line-too-long
"S101", # use of assert for tests and type narrowing
"D203", # One blank line before class
"D204", # blank line thing
"D211", # no-blank-line-before-class
"D213", # multi-line-summary-second-line
"SIM117", # Use multiple with statements at the same time
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"D100", # undocumented-public-module
"D103", # undocumented-public-function
"D107", # Missing docstring
]
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov=fix_lwjgl"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["src"]
omit = []
[tool.coverage.report]
precision = 1
skip_covered = true
exclude_lines = [
"pragma: no cover",
"abc.abstractmethod",
"if TYPE_CHECKING.*:",
"if _t.TYPE_CHECKING:",
"if t.TYPE_CHECKING:",
"@overload",
'class .*\bProtocol\b.*\):',
"raise NotImplementedError",
]
partial_branches = [
"pragma: no branch",
"if not TYPE_CHECKING:",
"if not _t.TYPE_CHECKING:",
"if not t.TYPE_CHECKING:",
"if .* or not TYPE_CHECKING:",
"if .* or not _t.TYPE_CHECKING:",
"if .* or not t.TYPE_CHECKING:",
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38, py39, py310, py311, py312, mypy, pytest
isolated_build = false
[gh-actions]
python =
3.8: py38, pytest, mypy
3.9: py39, pytest
3.10: py310, pytest
3.11: py311, pytest
3.12: py312, pytest, mypy
[testenv]
setenv =
PYTHONPATH = {toxinidir}
[testenv:pytest]
deps =
pytest
pytest-cov
pytest-trio
commands = pytest --basetemp={envtmpdir}
[testenv:mypy]
deps =
mypy
commands = mypy src
"""