-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
50 lines (47 loc) · 1.65 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
[project]
name = "mypy-gitlab-code-quality"
version = "1.1.0"
description = "Simple script to generate gitlab code quality report from output of mypy."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Dmitry Samsonov", email = "[email protected]" },
{ name = "OokamiTheLord" },
]
keywords = ["gitlab", "gitlab-ci", "mypy", "codequality"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
]
[project.urls]
"Homepage" = "https://github.com/soul-catcher/mypy-gitlab-code-quality"
"Bug Tracker" = "https://github.com/soul-catcher/mypy-gitlab-code-quality/issues"
[project.scripts]
mypy-gitlab-code-quality = "mypy_gitlab_code_quality:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.mypy]
strict = true
python_version = "3.8"
exclude = ['test.*\.py']
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D1", # Docstrings
"PT", # Pytest. Project uses Unittest
"ANN", # Annotations. There is Mypy in project
"FIX", # Check for temporary developer notes
"TD003", # Temporary developer note missing link to issue
"COM812", # Comma checks. Conflicts with Ruff formatter
"ISC001", # Implicit string concatenation. Conflicts with ruff formatter
]
pydocstyle.convention = "pep257"