File tree Expand file tree Collapse file tree 1 file changed +20
-9
lines changed
Expand file tree Collapse file tree 1 file changed +20
-9
lines changed Original file line number Diff line number Diff line change 11""" shared stuff """
22
3+ # config for python module
34PCONFIG : list [str ] = [
45 "pyclassifiers" ,
56]
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
2115PTEST : 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
2937TEST : list [str ] = [
3038 "pylint" ,
3139 "pytest" ,
3240 "mypy" ,
3341 "ruff" ,
3442]
43+ # deps for non python module
44+ DEPS : list [str ] = [
45+ ]
You can’t perform that action at this time.
0 commit comments