parent
5817f273e9
commit
fa847f76ec
@ -1,11 +1,17 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='miplearn',
|
name='miplearn',
|
||||||
version='0.1',
|
version='0.1',
|
||||||
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=['miplearn'],
|
||||||
install_requires=['pyomo', 'numpy', 'sklearn', 'networkx'],
|
install_requires=[
|
||||||
|
'pyomo',
|
||||||
|
'numpy',
|
||||||
|
'sklearn',
|
||||||
|
'networkx',
|
||||||
|
'tqdm',
|
||||||
|
],
|
||||||
)
|
)
|
Loading…
Reference in new issue