Skip to content

Commit e48a539

Browse files
committed
update setup
1 parent 4e3d771 commit e48a539

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ coverage.html/*
66
.coverage
77
dist/*
88
build/*
9+
.eggs/*
910
*egg-info/*
1011
_doc/auto_examples/*
1112
_doc/examples/plot_*.png

onnx_array_api/plotting/text_plot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,7 @@ def onnx_simple_text_plot(
571571
.. gdot::
572572
:script: DOT-SECTION
573573
574+
# onnx_simple_text_plot
574575
import numpy
575576
from sklearn.cluster import KMeans
576577
from mlprodict.onnxrt import OnnxInference

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
except FileNotFoundError:
2222
requirements = []
2323
if len(requirements) == 0 or requirements == [""]:
24-
requirements = []
24+
requirements = ["numpy", "scipy", "onnx"]
2525

2626
long_description = ""
2727

@@ -47,8 +47,8 @@
4747
packages=packages,
4848
package_dir=package_dir,
4949
package_data=package_data,
50-
setup_requires=["numpy", "scipty"],
51-
install_requires=["numpy", "scipty"],
50+
setup_requires=["numpy", "scipy"],
51+
install_requires=requirements,
5252
classifiers=[
5353
"Intended Audience :: Science/Research",
5454
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)