From c8152aab6c08d3fe3d511a6a68c578a289617dee Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Tue, 7 Apr 2020 09:23:33 -0500 Subject: [PATCH] Update dependencies --- src/python/setup.py | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/python/setup.py b/src/python/setup.py index 139ef80..7a8e846 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -8,11 +8,20 @@ setup( author_email='axavier@anl.gov', packages=['miplearn'], install_requires=[ - 'pyomo', + 'docopt', + 'matplotlib', + 'mkdocs', + 'mkdocs-cinder', + 'networkx', 'numpy', + 'pandas', + 'p_tqdm', + 'pyomo', + 'pytest', + 'pytest-watch', + 'python-markdown-math', + 'seaborn', 'sklearn', - 'networkx', 'tqdm', - 'pandas', - ], -) \ No newline at end of file + ], +)