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 bec4b2c commit 3546829Copy full SHA for 3546829
config/python.py
@@ -1,9 +1,7 @@
1
""" python deps for this project """
2
3
-build_requires: list[str] = [
4
- "pyclassifiers",
5
- "pydmt",
6
- "pymakehelper",
7
- "pylint",
8
-]
9
-requires = build_requires
+import config.shared
+
+build_requires: list[str] = config.shared.BUILD
+test_requires: list[str] = config.shared.TEST
+requires = build_requires + test_requires
requirements.thawed.txt
@@ -1,5 +1,8 @@
# THIS IS AN AUTO-GENERATED FILE. DO NOT EDIT!
-pyclassifiers
+mypy
+pycmdtools
pydmt
pylint
pymakehelper
+pytest
+ruff
0 commit comments