We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b87f85 commit 184e3b3Copy full SHA for 184e3b3
1 file changed
setup.py
@@ -9,7 +9,7 @@
9
10
setup(
11
name="interactive-visualization", # Replace with your own username
12
- version="0.1.2",
+ version="0.1.3",
13
author="Nikolay Malkovsky",
14
author_email="malkovskynv@gmail.com",
15
description="Package provides a simple widget-based framework for interactive visualization of algorithms",
@@ -28,5 +28,9 @@
28
],
29
package_dir={"": "src"},
30
packages=find_packages(where="src"),
31
+ install_requires=[
32
+ 'graphviz',
33
+ 'matplotlib'
34
+ ],
35
python_requires=">=3.7",
36
)
0 commit comments