-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
92 lines (81 loc) · 1.68 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
92
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clproc"
version = "2024.08.12"
authors = [
{ name="Michel Albert", email="[email protected]" },
]
description = "Generate curated changelogs into various formats."
readme = "README.rst"
license = { text="MIT License" }
requires-python = ">=3.7"
keywords = [
"changelog",
"documentation",
"json",
"markdown",
"pre-commit",
"release notes",
"yaml",
]
dependencies = [
"packaging",
"python-dateutil",
"pyyaml",
"tomli",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
]
[project.scripts]
clproc = "clproc.cli:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cache",
"pytest-coverage",
]
dev = [
"furo",
"mypy",
"myst-parser",
"sphinx",
"sphinx-rtd-theme",
"types-PyYAML",
"types-python-dateutil",
]
[project.urls]
"Source" = "https://github.com/post-luxembourg/clproc"
"Issues" = "https://github.com/post-luxembourg/clproc/issues"
[tool.black]
line-length = 80
[tool.isort]
line_length = 80
force_grid_wrap = 0
virtual_env = "env"
profile = "black"
[tool.coverage.run]
relative_files = true
source = ["clproc"]
branch = true
omit = [
"env/*",
"tests/*",
]
[tool.coverage.report]
skip_covered = true
skip_empty = true
sort = "-cover"
[tool.coverage.html]
show_contexts = true
[tool.mypy]
strict = true