-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (58 loc) · 1.5 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
[project]
name = "magic-list"
description = "Magic List is a module that extends the built-in list type."
version = "2.4.0"
keywords = ["collections", "list", "built-in", "extension"]
authors = [{ name = "Qexat", email = "contact@qexat.com" }]
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
documentation = "https://qexat.github.io/magic-list/"
repository = "https://github.com/qexat/magic-list"
[project.optional-dependencies]
dev = [
"build>=1.2,<2.0",
"coverage>=7.4,<8.0",
"pdoc>=14.4,<16.0",
"pre-commit>=3.7,<5.0",
"pytest>=7.4,<8.4",
"pyright>=1.1,<2.0",
"ruff>=0.4,<1.0",
"twine>=5.0,<7.0",
"typing-extensions>=4.11",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM",
"D",
"FIX",
"ANN1",
"ANN401",
"ISC001",
"T201",
"TD003",
"PLR2004",
]
exclude = ["tests/**"]
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint.pylint]
max-returns = 8
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["INP", "FBT", "PLC2701", "S101", "SLF001", "ANN", "PT", "B018"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"