-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (65 loc) · 2.13 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
[project]
name = "jsonyx"
version = "2.0.0"
authors = [
{ name="Nice Zombies", email="[email protected]" },
]
maintainers = [
{ name="Nice Zombies", email="[email protected]" },
]
description = "Customizable JSON manipulator for Python"
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.8"
keywords = ["python", "json", "json-parser"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.scripts]
jsonyx = "jsonyx.__main__:main"
[project.urls]
Homepage = "https://github.com/nineteendo/jsonyx"
Changelog = "https://jsonyx.readthedocs.io/en/latest/changelog.html"
Documentation = "https://jsonyx.readthedocs.io"
Issues = "https://github.com/nineteendo/jsonyx/issues"
Sponser = "https://paypal.me/nineteendo"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
ignore = [
"ANN401", # any-type
"C901", # complex-structure
"DOC201", # docstring-missing-returns
"DOC501", # docstring-missing-exception
"I001", # unsorted-imports
"INP001", # implicit-namespace-package
"PGH003", # blanket-type-ignore
"PLR0912", # too-many-branches
"PLR0913", # too-many-arguments
"PLR0915", # too-many-statements
"PLR0917", # too-many-positional-arguments
"PLR1702", # too-many-nested-blocks
"PLR2004", # magic-value-comparison
"PYI051", # redundant-literal-union
"SIM108", # if-else-block-instead-of-if-exp
"T201", # print
"TD003", # missing-todo-link
]
preview = true
select = ["ALL"]
[tool.ruff.lint.extend-per-file-ignores]
"**/test*.py" = ["S101"] # assert