mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-07 18:08:51 -06:00
18 lines
389 B
Python
18 lines
389 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='miplearn',
|
|
version='0.1',
|
|
description='A Machine-Learning Framework for Mixed-Integer Optimization',
|
|
author='Alinson S. Xavier',
|
|
author_email='axavier@anl.gov',
|
|
packages=['miplearn'],
|
|
install_requires=[
|
|
'pyomo',
|
|
'numpy',
|
|
'sklearn',
|
|
'networkx',
|
|
'tqdm',
|
|
'pandas',
|
|
],
|
|
) |