Skip to content

Commit

Permalink
Adding license and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Dom Hudson committed Oct 20, 2018
1 parent 4db484d commit 911cae5
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 'dom.hudson@thoughtriver.com',
url = 'https://www.thoughtriver.com',
Expand All @@ -20,4 +33,4 @@
'pytest',
'pytest-cov',
]
)
)

0 comments on commit 911cae5

Please sign in to comment.