Skip to content

Commit

Permalink
FIX: add long_description in setup.py (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
wdevazelhes committed Sep 5, 2018
1 parent 5c80f50 commit 617f7e5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 617f7e5

Please sign in to comment.