-
Notifications
You must be signed in to change notification settings - Fork 137
/
pyproject.toml
400 lines (352 loc) · 10.9 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
# SPDX-License-Identifier: MIT
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "disnake"
description = "A Python wrapper for the Discord API"
readme = "README.md"
authors = [
{ name = "Disnake Development" }
]
requires-python = ">=3.8"
keywords = ["disnake", "discord", "discord api"]
license = { text = "MIT" }
dependencies = [
"aiohttp>=3.7.0,<4.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
Changelog = "https://docs.disnake.dev/page/whats_new.html"
Documentation = "https://docs.disnake.dev/"
Repository = "https://github.com/DisnakeDev/disnake"
[project.optional-dependencies]
speed = [
"orjson~=3.6",
# taken from aiohttp[speedups]
"aiodns>=1.1",
"Brotli",
'cchardet; python_version < "3.10"',
]
voice = [
"PyNaCl>=1.5.0,<1.6",
]
docs = [
"sphinx==7.0.1",
"sphinxcontrib-trio~=1.1.2",
"sphinx-hoverxref==1.3.0",
"sphinx-autobuild~=2021.3",
"sphinxcontrib-towncrier==0.3.2a0",
"towncrier==23.6.0",
"sphinx-notfound-page==0.8.3",
]
[tool.pdm.dev-dependencies]
nox = [
"nox==2022.11.21",
]
tools = [
"pre-commit~=3.0",
"slotscheck~=0.16.4",
"python-dotenv~=1.0.0",
"check-manifest==0.49",
"ruff==0.3.4",
]
changelog = [
"towncrier==23.6.0",
]
codemod = [
# run codemods on the respository (mostly automated typing)
"libcst~=1.1.0",
"black==23.9.1",
"autotyping==23.2.0",
]
typing = [
# this is not pyright itself, but the python wrapper
"pyright==1.1.336",
"typing-extensions~=4.8.0",
# only used for type-checking, version does not matter
"pytz",
]
test = [
"pytest~=7.4.2",
"pytest-cov~=4.0.0",
"pytest-asyncio~=0.20.3",
"looptime~=0.2",
"coverage[toml]~=6.5.0",
]
build = [
"wheel~=0.40.0",
"build~=0.10.0",
"twine~=5.1.1",
]
[tool.pdm.scripts]
black = { composite = ["lint black"], help = "Run black" }
docs = { cmd = "nox -Rs docs --", help = "Build the documentation for development" }
lint = { cmd = "nox -Rs lint --", help = "Check all files for linting errors" }
pyright = { cmd = "nox -Rs pyright --", help = "Run pyright" }
setup_env = { cmd = "pdm install -d -G speed -G docs -G voice", help = "Set up the local environment and all dependencies" }
post_setup_env = { composite = ["python -m ensurepip --default-pip", "pre-commit install --install-hooks"] }
test = { cmd = "nox -Rs test --", help = "Run pytest" }
# legacy tasks for those who still type `task`
[tool.taskipy.tasks]
black = { cmd = "black", help = "Run black" }
docs = { cmd = "docs", help = "Build the documentation for development" }
lint = { cmd = "lint", help = "Check all files for linting errors" }
pyright = { cmd = "pyright", help = "Run pyright" }
setup_env = { cmd = "setup_env", help = "Setup the local environment and set up all dependencies" }
test = { cmd = "test", help = "Run pytest" }
[tool.taskipy.settings]
runner = "pdm run"
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = [
# commented out codes are intended to be enabled in future prs
"F", # pyflakes
"E", "W", # pycodestyle
# "D", # pydocstyle
"D2", # pydocstyle, docstring formatting
"D4", # pydocstyle, docstring structure/content
# "ANN", # flake8-annotations
"S", # flake8-bandit
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"DTZ", # flake8-datetimez
# "EM", # flake8-errmsg
"G", # flake8-logging-format
# "RET", # flake8-return
# "SIM", # flake8-simplify
"TID251", # flake8-tidy-imports, replaces S404
"TCH", # flake8-type-checking
"RUF", # ruff specific exceptions
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RSE", # flake8-raise
"T20", # flake8-print
"PGH", # pygrep-hooks
"PLC", # pylint convention
"PLE", # pylint error
# "PLR", # pylint refactor
"PLW", # pylint warnings
"TRY002", "TRY004", "TRY201", # tryceratops
"I", # isort
]
ignore = [
# star imports
"F403",
# pydocstyle
"D203", # incompat with D211
"D213", # multiline docstring should start on second line, incompatiable with D212
"D400", # first line ends in period, does not work with `|coro|` etc.
"D415", # same thing but punctuation in general
"D416", # section name should end with a colon, incompatible with D406
# unknown if this is actually an issue
"RUF005", # might not be actually faster
"RUF006", # might not be an issue/very extreme cases
# calling subprocess with dynamic arguments is generally fine, the only way to avoid this is ignoring it
"S603",
# partial executable paths (i.e. "git" instead of "/usr/bin/git") are fine
"S607",
# ignore try-except-pass. Bare excepts are caught with E722
"S110",
# provide specific codes on type: ignore
"PGH003",
# typevar names don't match variance (we don't always want this)
"PLC0105",
# import aliases are fixed by ruff
"PLC0414",
# outer loop variables are overwritten by inner assignment target, these are mostly intentional
"PLW2901",
# ignore imports that could be moved into type-checking blocks
# (no real advantage other than possibly avoiding cycles,
# but can be dangerous in places where we need to parse signatures)
"TCH001",
"TCH002",
"TCH003",
"S311", # insecure RNG usage, we don't use these for security-related things
"PLE0237", # pyright seems to catch this already
# temporary disables, to fix later
"D205", # blank line required between summary and description
"D401", # first line of docstring should be in imperative mood
"D417", # missing argument description in docstring
"B904", # within an except clause raise from error or from none
"B026", # backwards star-arg unpacking
"E501", # line too long
"E731", # assigning lambdas to variables
"T201", # print statements
]
[tool.ruff.lint.per-file-ignores]
"disnake/__main__.py" = ["T201"] # print statements are okay in our simple cli
"disnake/i18n.py" = [
"B027", # lib bug. Excluded here because ruff does not have a --disable-noqa flag yet
]
"disnake/ui/select/*.py" = [
"F401", # unused imports. Excluded because there is a bug with ruff.
]
"disnake/**.py" = ["PT"] # this is not a module of pytest tests
"test_bot/*.py" = [
"B008", # do not perform function calls in argument defaults
"T201", # print found, printing is currently accepted in the test bot
"PT", # this is not a module of pytest tests
]
"tests/*.py" = ["S101"] # use of assert is okay in test files
"scripts/*.py" = ["S101"] # use of assert is okay in scripts
# we are not using noqa in the example files themselves
"examples/*.py" = [
"B008", # do not perform function calls in argument defaults, this is how most commands work
"PT", # this is not a module of pytest tests
"S311", # pseudo-random generators aren't suitable for cryptographic purposes
"T201", # print found, printing is okay in examples
]
"examples/basic_voice.py" = ["S104"] # possible binding to all interfaces
"examples/views/tic_tac_toe.py" = ["E741"] # ambigious variable name: `O`
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"subprocess".msg = "Consider possible security implications associated with the subprocess module." # replaces S404
[tool.towncrier]
template = "changelog/_template.rst.jinja"
package = "disnake"
filename = "docs/whats_new.rst"
directory = "changelog/"
title_format = false
underlines = "-~"
issue_format = ":issue:`{issue}`"
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecate"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Miscellaneous"
showcontent = true
[tool.slotscheck]
strict-imports = true
require-superclass = true
require-subclass = false
exclude-modules = '''
(
^disnake\.types\.
)
'''
[tool.pyright]
typeCheckingMode = "strict"
include = [
"disnake",
"docs",
"examples",
"test_bot",
"tests",
"*.py",
]
ignore = [
"disnake/ext/mypy_plugin",
]
# this is one of the diagnostics that aren't enabled by default, even in strict mode
reportUnnecessaryTypeIgnoreComment = true
# it's unlikely that these will ever be enabled
reportOverlappingOverload = false
reportPrivateUsage = false
reportUnnecessaryIsInstance = false
reportFunctionMemberAccess = false
reportMissingTypeStubs = false
reportUnusedFunction = false
reportUnusedClass = false
reportConstantRedefinition = false
reportImportCycles = false
reportIncompatibleMethodOverride = false
reportIncompatibleVariableOverride = false
# these are largely due to missing type hints, and make up most of the error count
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownArgumentType = false
reportMissingParameterType = false
reportUnknownVariableType = false
reportMissingTypeArgument = false
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--strict-markers -Werror -s"
xfail_strict = true
asyncio_mode = "strict"
[tool.coverage.run]
branch = true
include = [
"disnake/*",
"tests/*",
]
omit = [
"disnake/ext/mypy_plugin/*",
"disnake/types/*",
"disnake/__main__.py",
]
[tool.coverage.report]
precision = 1
exclude_lines = [
"# pragma: no cov(er(age)?)?$",
"^\\s*def __repr__",
"^\\s*@overload",
"^\\s*if TYPE_CHECKING",
"^\\s*raise NotImplementedError$",
"^\\s*\\.\\.\\.$",
]
[tool.check-manifest]
ignore = [
# CI
".pre-commit-config.yaml",
".readthedocs.yml",
".libcst.codemod.yaml",
"noxfile.py",
# docs
"CONTRIBUTING.md",
"RELEASE.md",
"assets/**",
"changelog/**",
"docs/**",
"examples/**",
# tests
"test_bot/**",
"tests/**",
"scripts/**",
]