-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
254 lines (207 loc) · 4.96 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
[project]
name = "pyswarm"
authors = [
{ name = "pyswarm", email = "[email protected]" }
]
description = "Honey Swarm is a Swarm light client implemented in Python 🐍"
readme = "README.md"
dynamic = ["version"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.9"
dependencies = [
]
[project.urls]
Documentation = "https://ankvik-tech-labs.github.io/pyswarm/"
Source = "https://github.com/Ankvik-Tech-Labs/PySwarm"
[tool.hatch]
[tool.hatch.metadata]
allow-direct-references = true
##############
# Versioning #
##############
[tool.hatch.version]
source = "regex_commit"
commit_extra_args = ["-e"]
path = "src/mantaray_py/__version__.py"
# [tool.hatch.build.hooks.vcs]
# version-file = "src/pyswarm/_version.py"
##################
# External Tools #
##################
[tool.mypy]
files = ["pyswarm"]
exclude = ["build/", "dist/", "docs/", "tests/*"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
plugins = ["pydantic.mypy"]
[tool.ruff]
target-version = "py39"
line-length = 120
indent-width = 4
include = [
"src/**/*.py",
"src/**/*.pyi",
"tests/**/*.py",
"tests/**/*.pyi"
]
exclude = ["tests", "src/pyswarm/_version.py"]
[tool.ruff.lint]
preview = true # preview features & checks, use with caution
extend-select = [ # features in preview
"W292", # missing-newline-at-end-of-file
]
select = [
"A",
"ARG",
"B",
"C",
"DTZ",
"E",
"EM",
"F",
"FBT", # Boolean trap
"ICN",
"ISC",
"I",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"Q",
"RUF",
"S",
"T",
"TID",
"UP",
"W",
"YTT",
"RUF100", # Automatically remove unused # noqa directives
]
ignore = [
# Allow non-abstract empty methods in abstract base classes
"B027",
# Allow boolean positional values in function calls, like `dict.get(... True)`
"FBT003",
# Ignore checks for possible passwords
"S105", "S106", "S107",
# Ignore complexity
"C901", "PLR0911", "PLR0912", "PLR0913", "PLR0915",
"PLC1901", # empty string comparisons
"PLW2901", # `for` loop variable overwritten
"SIM114", # Combine `if` branches using logical `or` operator
"E203", # Whitespace before :, needed for black compatability and also `ruff format`
"ISC001", # causes unexpected behaviour with formatter
]
[tool.ruff.lint.isort]
known-first-party = ["pyswarm"]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.per-file-ignores]
# Allow print/pprint
"examples/*" = ["T201"]
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "TID252"]
[tool.pytest.ini_options]
addopts = "--cov=src/pyswarm/ --cov-report=term-missing"
[tool.coverage.run]
branch = true
source = ["src/pyswarm"]
omit = [
# automatically created by hatch-vcs, not in repo
"_version.py",
]
[tool.coverage.paths]
source = [
"src/",
"*/site-packages/",
]
#####################
# Environment Setup #
#####################
# Default env dendencies
[tool.hatch.envs.default]
dependencies = [
"pydantic",
]
installer = "uv" # or "pip"
post-install-commands = ["pre-commit install"]
# Lint env dendencies
[tool.hatch.envs.lint]
dependencies = [
"pydantic",
"mypy",
"ruff",
"deptry",
]
[tool.hatch.envs.lint.scripts]
typing = [
"echo \"VERSION: `mypy --version`\"",
"mypy --install-types --non-interactive {args}"
]
lint = [
"echo \"VERSION: `ruff --version`\"",
"ruff format .",
"ruff check . --fix",
"mypy src/pyswarm/",
]
lint-check = [
"echo \"VERSION: `ruff --version`\"",
"ruff format --check .",
"ruff check .",
"mypy src/pyswarm/",
]
# Docs env dendencies
[tool.hatch.envs.docs]
dependencies = [
"mkdocs",
"mkdocs-material",
"mkdocs-gen-files",
"mkdocstrings[python]",
"linkchecker",
]
[tool.hatch.envs.docs.scripts]
docs-serve = "mkdocs serve"
docs-build = "mkdocs build --clean --strict"
# --ignore-url=None since the SUMMARY.md file leaves a <toc>None</toc> in sitemap.xml
validate = "linkchecker --config .linkcheckerrc --ignore-url=/reference --ignore-url=None site"
# https://github.com/linkchecker/linkchecker/issues/678
build-check = [
"docs-build",
"validate",
]
# Testing env dendencies
[tool.hatch.envs.test]
dependencies = [
"pytest",
"pytest-cov",
]
[tool.hatch.envs.test.scripts]
test = "pytest"
test-cov-xml = "pytest --cov-report=xml"
# Replace tox & nox
[[tool.hatch.envs.test.matrix]]
python = ["3.9"]
#########
# Build #
#########
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
[tool.hatch.build.targets.wheel]
packages = ["src/pyswarm/"]