Skip to content

Commit 1c3dcf5

Browse files
committed
Refactor code structure for improved readability and maintainability
1 parent 999a4b3 commit 1c3dcf5

3 files changed

Lines changed: 1111 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: github-actions
9+
directory: /
10+
schedule:
11+
interval: "monthly"
12+
groups:
13+
github-actions:
14+
patterns:
15+
- "*"
16+
- package-ecosystem: pip
17+
directory: /
18+
schedule:
19+
interval: "monthly"
20+
groups:
21+
pip:
22+
patterns:
23+
- "*"

pyproject.toml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=77", "setuptools-scm", "wheel"]
2+
requires = ["setuptools>=77", "setuptools-scm"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -9,7 +9,20 @@ readme = "README.md"
99
requires-python = ">=3.10"
1010
license = { text = "MIT" }
1111
authors = [
12-
{ name = "commit-check" }
12+
{ name = "Xianpeng Shen", email = "xianpeng.shen@gmail.com" }
13+
]
14+
classifiers = [
15+
"Development Status :: 4 - Beta",
16+
"Environment :: Console",
17+
"Intended Audience :: Developers",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
25+
"Topic :: Software Development",
1326
]
1427
dependencies = [
1528
"commit-check>=2.5.0,<3",

0 commit comments

Comments
 (0)