-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
91 lines (76 loc) · 2.24 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "concoursetools"
dynamic = ["version"]
description = "Easily create Concourse resource types in Python."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"concourse",
"ci",
"cd",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"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",
"Topic :: Software Development",
"Typing :: Typed",
]
authors = [
{name = "GCHQ", email = "oss@gchq.gov.uk"},
]
license = {text = "Apache License 2.0"}
[project.urls]
"Homepage" = "https://github.com/gchq/ConcourseTools/"
"Documentation" = "https://concoursetools.readthedocs.io/en/stable/"
"Repository" = "https://github.com/gchq/ConcourseTools/"
"Bug Tracker" = "https://github.com/gchq/ConcourseTools/issues"
"Changelog" = "https://concoursetools.readthedocs.io/en/latest/whats_new.html"
[tool.setuptools]
packages = [
"concoursetools",
"concoursetools.cli",
]
[tool.setuptools.dynamic]
version = {attr = "concoursetools.__version__"}
[tool.coverage.run]
command_line = "-m unittest discover"
source = ["concoursetools"]
omit = ["concoursetools/colour.py", "concoursetools/typing.py", "*/__init__.py", "*/__main__.py"]
[tool.coverage.report]
sort = "Cover"
exclude_lines = [
"@abstractmethod",
"def __repr__",
"pass",
"raise$",
"raise RuntimeError",
]
[tool.isort]
line_length = 150
force_sort_within_sections = true
[tool.mypy]
python_version = "3.12"
check_untyped_defs = true
disallow_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
disallow_any_generics = true
disable_error_code = ["override"]
[tool.pylint]
max-line-length = 150
disable = ["too-many-arguments", "too-few-public-methods"]
good-names = ["wf"]
ignore-paths = ["docs/source/conf.py", "tests"]
[tool.pydocstyle]
ignore = ["D102", "D105", "D107", "D200", "D203", "D204", "D205", "D212", "D400", "D415"]