Skip to content

Commit 5bb4a52

Browse files
committed
Added pytest and some classifiers
1 parent 882c3fc commit 5bb4a52

File tree

2 files changed

+81
-2
lines changed

2 files changed

+81
-2
lines changed

pdm.lock

Lines changed: 64 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ dependencies = []
99
requires-python = ">=3.12"
1010
readme = "README.md"
1111
license = {text = "MIT"}
12+
classifiers = [
13+
"Programming Language :: Python :: 3",
14+
"License :: OSI Approved :: MIT License",
15+
"Operating System :: OS Independent",
16+
"Intended Audience :: Developers",
17+
"Topic :: Software Development :: Libraries :: Python Modules",
18+
"Topic :: Software Development :: Code Generators",
19+
"Topic :: Utilities",
20+
"Environment :: Console",
21+
]
1222

1323
[build-system]
1424
requires = ["pdm-backend"]
@@ -18,5 +28,12 @@ build-backend = "pdm.backend"
1828
[tool.pdm]
1929
distribution = true
2030

31+
[tool.pdm.build]
32+
excludes = ["tests/**"]
33+
34+
[tool.pdm.dev-dependencies]
35+
dev = [
36+
"pytest>=8.2.2",
37+
]
2138
[project.scripts]
2239
coderoller-flatten-repo = "coderoller.flatten_repo:main"

0 commit comments

Comments
 (0)