-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
35 lines (29 loc) · 916 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open('README.md') as file:
description = file.read()
setup(
name='navec',
version='0.10.0',
description='Compact high quality word embeddings for russian language',
long_description=description,
long_description_content_type='text/markdown',
url='https://github.com/natasha/navec',
author='Alexander Kukushkin',
author_email='alex@alexkuk.ru',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='embeddings, word2vec, glove, nlp, russian, quantization',
packages=find_packages(),
install_requires=[
'numpy'
],
entry_points={
'console_scripts': [
'navec-train=navec.train.ctl.__main__:main'
]
}
)