We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c80f50 commit 617f7e5Copy full SHA for 617f7e5
setup.py
@@ -7,9 +7,14 @@
7
with open(os.path.join('metric_learn', '_version.py')) as fp:
8
exec(fp.read(), version)
9
10
+# Get the long description from README.md
11
+with open('README.rst', encoding='utf-8') as f:
12
+ long_description = f.read()
13
+
14
setup(name='metric-learn',
15
version=version['__version__'],
16
description='Python implementations of metric learning algorithms',
17
+ long_description=long_description,
18
author=['CJ Carey', 'Yuan Tang'],
19
author_email='[email protected]',
20
url='http://github.com/metric-learn/metric-learn',
0 commit comments