We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e812901 commit bec4b2cCopy full SHA for bec4b2c
config/shared.py
@@ -3,15 +3,31 @@
3
PCONFIG: list[str] = [
4
"pyclassifiers",
5
]
6
+# build for python module
7
PBUILD: list[str] = [
8
"hatch",
9
"pydmt",
10
"pymakehelper",
11
+ "pycmdtools",
12
13
+# build for non python module
14
+BUILD: list[str] = [
15
+ "pydmt",
16
+ "pymakehelper",
17
18
+]
19
+# testing for python modules
20
PTEST: list[str] = [
21
"pylint",
22
"pytest",
23
"mypy",
24
"ruff",
25
# "pytest-cov",
26
27
+# testing for non python modules
28
+TEST: list[str] = [
29
+ "pylint",
30
+ "pytest",
31
+ "mypy",
32
+ "ruff",
33
0 commit comments