File tree 1 file changed +15
-2
lines changed 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 3
3
from distutils .core import setup
4
4
from setuptools import find_packages
5
5
6
+ def get_readme ():
7
+ """ Get the package README as a string.
8
+
9
+ :return str
10
+ """
11
+ root = os .path .abspath (os .path .dirname (__file__ ))
12
+ readme_path = os .path .join (root , 'README.md' )
13
+
14
+ with open (readme_path ) as f :
15
+ return f .read ()
6
16
7
17
setup (
8
18
name = 'lmdb_embeddings' ,
9
- version = '0.2.0 ' ,
19
+ version = '0.2.1 ' ,
10
20
description = 'Fast querying of word embeddings using the LMDB "Lightning" Database.' ,
21
+ license = 'GNU General Public License v3.0' ,
22
+ long_description = get_readme (),
23
+ long_description_content_type = 'text/markdown' ,
11
24
author = 'Dom Hudson' ,
12
25
author_email = 'dom.hudson@thoughtriver.com' ,
13
26
url = 'https://www.thoughtriver.com' ,
20
33
'pytest' ,
21
34
'pytest-cov' ,
22
35
]
23
- )
36
+ )
You can’t perform that action at this time.
0 commit comments