-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (57 loc) · 1.61 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
[tool.poetry]
name = "mypy-json-report"
version = "1.2.0"
description = "Generate a JSON report from your mypy output"
authors = ["Charlie Denton <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/memrise/mypy-json-report"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development",
"Topic :: Utilities",
]
[project.urls]
Source = "https://github.com/memrise/mypy-json-report"
[tool.poetry.dependencies]
python = "~=3.8"
[tool.poetry.group.dev.dependencies]
mypy = "*"
pytest = "*"
tox = "*"
tox-gh-actions = "*"
[tool.poetry.scripts]
mypy-json-report = "mypy_json_report.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
"PL", # Pylint
"UP", # pyupgrade
]
ignore = [
"E501", # Line too long
]
[tool.ruff.lint.isort]
combine-as-imports = true
lines-after-imports = 2
split-on-trailing-comma = false
[tool.ruff.format]
skip-magic-trailing-comma = true