diff --git a/setup.py b/setup.py index 273587e9..96210994 100755 --- a/setup.py +++ b/setup.py @@ -7,9 +7,14 @@ with open(os.path.join('metric_learn', '_version.py')) as fp: exec(fp.read(), version) +# Get the long description from README.md +with open('README.rst', encoding='utf-8') as f: + long_description = f.read() + setup(name='metric-learn', version=version['__version__'], description='Python implementations of metric learning algorithms', + long_description=long_description, author=['CJ Carey', 'Yuan Tang'], author_email='ccarey@cs.umass.edu', url='http://github.com/metric-learn/metric-learn',