Update README and setup.py

This commit is contained in:
2020-08-29 11:50:21 -05:00
parent 25f336aac9
commit b7520ad16f
3 changed files with 10 additions and 3 deletions

View File

View File

@@ -26,5 +26,5 @@ For installation instructions, basic usage and benchmarks results, see the [offi
License License
------- -------
Released under the modified BSD license. See `COPYING.md` for more details. Released under the modified BSD license. See `LICENSE` for more details.

View File

@@ -1,12 +1,19 @@
from setuptools import setup, find_namespace_packages from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup( setup(
name='miplearn', name='miplearn',
version='0.1', version='0.1.0',
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',
description="Extensible framework for Learning-Enhanced Mixed-Integer Optimization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ANL-CEEESA/MIPLearn/",
packages=find_namespace_packages(), packages=find_namespace_packages(),
python_requires='>=3.6',
install_requires=[ install_requires=[
'docopt', 'docopt',
'matplotlib', 'matplotlib',