We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b5daea commit db5c6dcCopy full SHA for db5c6dc
setup.py
@@ -60,6 +60,13 @@
60
"flake8>=3.8.3",
61
"flaky>=3.7.0",
62
"isort>=5.7.0",
63
+ "pytest>=6.0.0",
64
+ "wheel>=0.36.2",
65
+ "onnxruntime>=1.0.0",
66
+ "matplotlib>=3.0.0",
67
+]
68
+
69
+_docs_deps = [
70
"m2r2~=0.2.7",
71
"mistune==0.8.4",
72
"myst-parser~=0.14.0",
@@ -68,11 +75,7 @@
75
"sphinx-copybutton>=0.3.0",
76
"sphinx-markdown-tables>=0.0.15",
77
"sphinx-multiversion==0.2.4",
- "pytest>=6.0.0",
78
"sphinx-rtd-theme",
73
- "wheel>=0.36.2",
74
- "onnxruntime>=1.0.0",
- "matplotlib>=3.0.0",
79
]
80
81
@@ -87,7 +90,7 @@ def _setup_install_requires() -> List:
87
90
88
91
89
92
def _setup_extras() -> Dict:
- return {"dev": _dev_deps, "nb": _notebook_deps}
93
+ return {"dev": _dev_deps, "nb": _notebook_deps, "docs": _docs_deps}
94
95
96
def _setup_entry_points() -> Dict:
0 commit comments