Skip to content

Commit 617f7e5

Browse files
authored
FIX: add long_description in setup.py (#122)
1 parent 5c80f50 commit 617f7e5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

+5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@
77
with open(os.path.join('metric_learn', '_version.py')) as fp:
88
exec(fp.read(), version)
99

10+
# Get the long description from README.md
11+
with open('README.rst', encoding='utf-8') as f:
12+
long_description = f.read()
13+
1014
setup(name='metric-learn',
1115
version=version['__version__'],
1216
description='Python implementations of metric learning algorithms',
17+
long_description=long_description,
1318
author=['CJ Carey', 'Yuan Tang'],
1419
author_email='[email protected]',
1520
url='http://github.com/metric-learn/metric-learn',

0 commit comments

Comments
 (0)