Skip to content

Commit bec4b2c

Browse files
committed
fixed up deps
1 parent e812901 commit bec4b2c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

config/shared.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,31 @@
33
PCONFIG: list[str] = [
44
"pyclassifiers",
55
]
6+
# build for python module
67
PBUILD: list[str] = [
78
"hatch",
89
"pydmt",
910
"pymakehelper",
11+
"pycmdtools",
1012
]
13+
# build for non python module
14+
BUILD: list[str] = [
15+
"pydmt",
16+
"pymakehelper",
17+
"pycmdtools",
18+
]
19+
# testing for python modules
1120
PTEST: list[str] = [
1221
"pylint",
1322
"pytest",
1423
"mypy",
1524
"ruff",
1625
# "pytest-cov",
1726
]
27+
# testing for non python modules
28+
TEST: list[str] = [
29+
"pylint",
30+
"pytest",
31+
"mypy",
32+
"ruff",
33+
]

0 commit comments

Comments
 (0)