Skip to content

Commit b967d60

Browse files
committed
no commit message given
1 parent 5c55c17 commit b967d60

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed

config/shared.py

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
""" shared stuff """
22

3+
# config for python module
34
PCONFIG: list[str] = [
45
"pyclassifiers",
56
]
@@ -10,25 +11,35 @@
1011
"pymakehelper",
1112
"pycmdtools",
1213
]
13-
# build for non python module
14-
BUILD: list[str] = [
15-
"pyclassifiers",
16-
"pydmt",
17-
"pymakehelper",
18-
"pycmdtools",
19-
]
20-
# testing for python modules
14+
# test for python module
2115
PTEST: list[str] = [
2216
"pylint",
2317
"pytest",
2418
"mypy",
2519
"ruff",
2620
# "pytest-cov",
2721
]
28-
# testing for non python modules
22+
# deps for python module
23+
PDEPS: list[str] = [
24+
"ripgrep",
25+
]
26+
# config for non python module
27+
CONFIG: list[str] = [
28+
]
29+
# build for non python module
30+
BUILD: list[str] = [
31+
"pyclassifiers",
32+
"pydmt",
33+
"pymakehelper",
34+
"pycmdtools",
35+
]
36+
# test for non python module
2937
TEST: list[str] = [
3038
"pylint",
3139
"pytest",
3240
"mypy",
3341
"ruff",
3442
]
43+
# deps for non python module
44+
DEPS: list[str] = [
45+
]

0 commit comments

Comments
 (0)