-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (57 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
68 lines (57 loc) · 1.74 KB
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
[build-system]
requires = [ "setuptools", "setuptools_scm" ]
build-backend = "setuptools.build_meta"
[project]
name = "commented-configparser"
requires-python = ">=3.9"
description = "A custom ConfigParser class that preserves comments and most formatting when writing loaded config out."
readme = "README.md"
license = "MIT"
authors = [
{ email = "preocts@preocts.com", name = "Preocts" }
]
maintainers = []
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython"
]
dynamic = [ "dependencies", "optional-dependencies", "version" ]
[tool.setuptools_scm]
[tool.setuptools.dynamic.dependencies]
file = [ "requirements/requirements.txt" ]
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = [ "requirements/requirements-dev.txt" ] }
test = { file = [ "requirements/requirements-test.txt" ] }
[project.urls]
homepage = "https://github.com/Preocts/commented-configparser"
[tool.setuptools.package-data]
"commentedconfigparser" = [ "py.typed" ]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_incomplete_defs = false
disallow_untyped_defs = false
[tool.coverage.run]
branch = true
source = [ "tests" ]
source_pkgs = [ "commentedconfigparser" ]
[tool.coverage.paths]
source = [ "src/", "*/site-packages" ]
test = [ "tests/", "*/tests" ]
[tool.coverage.report]
exclude_lines =[
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"\\.\\.\\.",
]