-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dom Hudson
committed
Oct 20, 2018
1 parent
4db484d
commit 911cae5
Showing
1 changed file
with
15 additions
and
2 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 |
---|---|---|
|
@@ -3,11 +3,24 @@ | |
from distutils.core import setup | ||
from setuptools import find_packages | ||
|
||
def get_readme(): | ||
""" Get the package README as a string. | ||
:return str | ||
""" | ||
root = os.path.abspath(os.path.dirname(__file__)) | ||
readme_path = os.path.join(root, 'README.md') | ||
|
||
with open(readme_path) as f: | ||
return f.read() | ||
|
||
setup( | ||
name = 'lmdb_embeddings', | ||
version = '0.2.0', | ||
version = '0.2.1', | ||
description = 'Fast querying of word embeddings using the LMDB "Lightning" Database.', | ||
license = 'GNU General Public License v3.0', | ||
long_description = get_readme(), | ||
long_description_content_type = 'text/markdown', | ||
author = 'Dom Hudson', | ||
author_email = '[email protected]', | ||
url = 'https://www.thoughtriver.com', | ||
|
@@ -20,4 +33,4 @@ | |
'pytest', | ||
'pytest-cov', | ||
] | ||
) | ||
) |