-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
167 lines (155 loc) · 5.2 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
[project]
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
name = "gha-utils"
version = "4.13.1"
# Python versions and their status: https://devguide.python.org/versions/
requires-python = ">= 3.10"
description = "⚙️ CLI helpers for GitHub Actions + reuseable workflows"
authors = [{ name = "Kevin Deldycke", email = "[email protected]" }]
readme = "readme.md"
keywords = [
'build-automation',
'changelog-formatter',
'ci-cd',
'cli',
'formatting',
'github-actions',
'labels',
'linting',
'markdown',
'mypy',
'nuitka',
'packaging',
'pypi',
'python',
'release-automation',
'sphinx',
'sponsorship',
'terminal',
'typo',
'workflow-reusable',
'yaml',
]
classifiers = [
# See: https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: Sphinx',
'Framework :: Pelican',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Unix Shell',
'Topic :: Documentation :: Sphinx',
'Topic :: File Formats :: JSON',
'Topic :: Security',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: System :: Archiving :: Packaging',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Shells',
'Topic :: System :: Software Distribution',
'Topic :: Terminals',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: Markdown',
'Topic :: Utilities',
'Typing :: Typed',
]
dependencies = [
"backports.strenum ~= 1.3.1 ; python_version < '3.11'",
# Loose version to let click-extra set its own stricter dependency.
"boltons >= 24.0.0",
# Dependency version is more relaxed on bump-my-version to prevent chicken and egg
# while releasing gha-utils itself.
# v0.21.0 is the first to rely on wcmatch library.
"bump-my-version >= 0.21.0",
"click-extra ~= 4.12.0",
"packaging ~= 24.1",
"PyDriller ~= 2.6",
"pyproject-metadata ~= 0.9.0",
"tomli ~= 2.0.1 ; python_version < '3.11'",
# Loose version to let click-extra set its own stricter dependency.
"wcmatch >= 8.5",
]
[project.optional-dependencies]
test = [
"coverage [toml] ~= 7.6.0",
"pytest ~= 8.3.1",
# More pytest plugins at: https://docs.pytest.org/en/latest/reference/plugin_list.html
"pytest-cases ~= 3.8.3",
"pytest-cov ~= 6.0.0",
"pytest-github-actions-annotate-failures ~= 0.3.0",
"pytest-randomly ~= 3.16.0",
]
[project.urls]
"Homepage" = 'https://github.com/kdeldycke/workflows'
"Repository" = 'https://github.com/kdeldycke/workflows'
"Funding" = "https://github.com/sponsors/kdeldycke"
"Issues" = "https://github.com/kdeldycke/workflows/issues"
"Changelog" = "https://github.com/kdeldycke/workflows/blob/main/changelog.md"
[project.scripts]
gha-utils = "gha_utils.__main__:main"
[tool.uv]
package = true
[tool.mypy]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
pretty = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
addopts = [
"--durations=10",
"--cov=gha_utils",
"--cov-branch",
"--cov-precision=2",
"--cov-report=term",
"--cov-report=xml",
"--junitxml=junit.xml",
"--override-ini=junit_family=legacy",
]
# Make sure tests that are expected to fail do not resurrect and start working all of a sudden.
xfail_strict = true
[tool.bumpversion]
current_version = "4.13.1"
allow_dirty = true
ignore_missing_files = true
[[tool.bumpversion.files]]
# Update Python package version in any __init__.py file.
glob = "./**/__init__.py"
ignore_missing_version = true
[[tool.bumpversion.files]]
# Update version in project section.
filename = "./pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
# Update the version in Markdown changelog.
filename = "./changelog.md"
search = "## [{current_version} (unreleased)]("
replace = "## [{new_version} (unreleased)]("
[[tool.bumpversion.files]]
# Update the version in the citation file.
filename = "./citation.cff"
search = "version: {current_version}"
replace = "version: {new_version}"
[[tool.bumpversion.files]]
# Update the release date in the citation file.
filename = "./citation.cff"
regex = true
search = "date-released: \\d{{4}}-\\d{{2}}-\\d{{2}}"
replace = "date-released: {utcnow:%Y-%m-%d}"