-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
34 lines (29 loc) · 904 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 find_packages, setup
setup(
name='rulm',
packages=find_packages(),
version='0.0.2',
description='',
author='Ilya Gusev',
author_email='[email protected]',
url='https://github.com/IlyaGusev/rulm',
download_url='https://github.com/IlyaGusev/rulm/archive/0.0.2.tar.gz',
keywords=['nlp', 'russian', 'language model'],
install_requires=[
'numpy>=1.11.3',
'scipy>=1.0.1',
'pygtrie>=2.2',
'torch>=1.0.0',
'allennlp>=0.8.1',
'pytest-cov>=2.6.1',
'codecov>=2.0.15'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: Russian',
'Programming Language :: Python :: 3.6',
],
)