From b7520ad16f79112f041f92a2b2367b4b3a2fd3e6 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Sat, 29 Aug 2020 11:50:21 -0500 Subject: [PATCH] Update README and setup.py --- COPYING.md => LICENSE | 0 README.md | 2 +- setup.py | 11 +++++++++-- 3 files changed, 10 insertions(+), 3 deletions(-) rename COPYING.md => LICENSE (100%) diff --git a/COPYING.md b/LICENSE similarity index 100% rename from COPYING.md rename to LICENSE diff --git a/README.md b/README.md index f710955..7f84902 100644 --- a/README.md +++ b/README.md @@ -26,5 +26,5 @@ For installation instructions, basic usage and benchmarks results, see the [offi License ------- -Released under the modified BSD license. See `COPYING.md` for more details. +Released under the modified BSD license. See `LICENSE` for more details. diff --git a/setup.py b/setup.py index ad2aa6f..95e7afe 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,19 @@ from setuptools import setup, find_namespace_packages +with open("README.md", "r") as fh: + long_description = fh.read() + setup( name='miplearn', - version='0.1', - description='A Machine-Learning Framework for Mixed-Integer Optimization', + version='0.1.0', author='Alinson S. Xavier', 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(), + python_requires='>=3.6', install_requires=[ 'docopt', 'matplotlib',