forked from Code-Bullet/NEAT-Template-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
190 lines (170 loc) · 4.67 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
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "neat"
dynamic = ["version"]
authors = [
{ name="CoolCat467", email="[email protected]" },
{ name="Code-Bullet" },
]
description = "This is a Python3 Implementation of Code-Bullets NEAT Template, originally programmed in JavaScript. This is intended to be used to easily add an AI to a game."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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 :: Software Development",
"Operating System :: OS Independent",
"Typing :: Typed",
]
keywords = ["ai", "neat"]
dependencies = []
[tool.setuptools.dynamic]
version = {attr = "neat.neat.__version__"}
[project.urls]
"Homepage" = "https://github.com/CoolCat467/NEAT-Template-Python"
"Source" = "https://github.com/CoolCat467/NEAT-Template-Python"
"Bug Tracker" = "https://github.com/CoolCat467/NEAT-Template-Python/issues"
[tool.setuptools.package-data]
neat = ["py.typed"]
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = 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.isort]
combine-as-imports = true
[tool.pycln]
all = true
disable_all_dunder_policy = true
[tool.black]
line-length = 79
target-version = ["py39"]
[tool.ruff]
line-length = 79
fix = true
include = ["*.py", "*.pyi", "**/pyproject.toml"]
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 conflicts with black
"S101", # use of assert for tests and type narrowing
"D203", # One blank line before class
"D211", # no-blank-line-before-class
"D213", # multi-line-summary-second-line
# "E203", # conflicts with black
# "E402", # module level import not at top of file
"SIM117", # Use multiple with statements at the same time
"D417", # "Missing argument descriptions"
]
[tool.ruff.per-file-ignores]
"src/neat/neat.py" = [
"S311", # Not using random for cryptographic purposes
]
"tests/*" = [
"D100", # undocumented-public-module
"D103", # undocumented-public-function
]
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov=neat"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["src"]
omit = []
[tool.coverage.report]
precision = 1
skip_covered = true
exclude_also = [
"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 = py39, py310, py311, py312, pytest, mypy
isolated_build = false
[gh-actions]
python =
3.9: py39, pytest
3.10: py310, pytest
3.11: py311, pytest
3.12: py312, mypy, pytest
[testenv]
setenv =
PYTHONPATH = {toxinidir}
[testenv:pytest]
deps =
pytest
pytest-cov
commands = pytest --basetemp={envtmpdir}
[testenv:mypy]
deps =
mypy
commands = mypy src
"""