-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (96 loc) · 2.23 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
[tool.poetry]
name = "pyriak"
version = "0.4.2"
description = "A lightweight implementation of Entity Component System architecture"
authors = ["aatle <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["ecs", "framework", "architecture"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Typing :: Typed",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.8.0"
mypy = "^1.14.0"
[tool.poetry.urls]
Repository = "https://github.com/aatle/pyriak.git"
Issues = "https://github.com/aatle/pyriak/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
[tool.ruff.lint]
select = [
"E",
"F",
"W",
"I",
"N",
"B",
"A",
"Q",
"UP",
"C4",
"PL",
"RUF",
"ARG",
"SIM",
"PIE",
"BLE",
"FBT",
"ISC",
"RSE",
"FLY",
"RET",
"T20",
"ICN",
"TC",
"SLOT",
"PERF",
"ANN",
"FURB",
]
ignore = ["SIM105", "PERF203", "ISC001", "PLC0414", "RUF022", "RUF023", "ANN401"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.mypy]
enable_error_code = [
"possibly-undefined",
"redundant-expr",
"truthy-bool",
"truthy-iterable",
"ignore-without-code",
"redundant-self",
"unused-ignore",
"unimported-reveal",
"mutable-override",
"deprecated",
]
warn_unused_ignores = true
warn_return_any = true
warn_redundant_casts = true
warn_unreachable = true
warn_incomplete_stub = true
local_partial_types = true
no_implicit_reexport = true
strict_equality = true
check_untyped_defs = true
extra_checks = true
disallow_any_unimported = true
disallow_subclassing_any = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_untyped_decorators = true
disallow_untyped_calls = true