-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: add long_description in setup.py (#122)
- Loading branch information
1 parent
5c80f50
commit 617f7e5
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
url='http://github.com/metric-learn/metric-learn', | ||
|