mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 09:28:51 -06:00
Remove non-essential pacakges from setup.py; correct setup.py packages
This commit is contained in:
@@ -1,14 +1,10 @@
|
|||||||
docopt
|
docopt
|
||||||
matplotlib
|
matplotlib
|
||||||
mkdocs
|
|
||||||
mkdocs-cinder
|
|
||||||
networkx
|
networkx
|
||||||
numpy
|
numpy
|
||||||
p_tqdm
|
p_tqdm
|
||||||
pandas
|
pandas
|
||||||
pyomo
|
pyomo
|
||||||
pytest
|
|
||||||
pytest-watch
|
|
||||||
python-markdown-math
|
python-markdown-math
|
||||||
seaborn
|
seaborn
|
||||||
sklearn
|
sklearn
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup, find_namespace_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='miplearn',
|
name='miplearn',
|
||||||
@@ -6,7 +6,7 @@ setup(
|
|||||||
description='A Machine-Learning Framework for Mixed-Integer Optimization',
|
description='A Machine-Learning Framework for Mixed-Integer Optimization',
|
||||||
author='Alinson S. Xavier',
|
author='Alinson S. Xavier',
|
||||||
author_email='axavier@anl.gov',
|
author_email='axavier@anl.gov',
|
||||||
packages=['miplearn'],
|
packages=find_namespace_packages(),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'docopt',
|
'docopt',
|
||||||
'matplotlib',
|
'matplotlib',
|
||||||
|
|||||||
Reference in New Issue
Block a user