forked from natasha/natasha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (32 loc) · 1.05 KB
/
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
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
with open('README.md') as file:
description = file.read()
with open('requirements/main.txt') as file:
requirements = [_.strip() for _ in file]
setup(
name='natasha',
version='1.4.0',
description='Named-entity recognition for russian language',
long_description=description,
long_description_content_type='text/markdown',
url='https://github.com/natasha/natasha',
author='Natasha contributors',
author_email='[email protected], [email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Text Processing :: Linguistic',
],
keywords='natural language processing, russian',
packages=find_packages(),
package_data={
'natasha': [
'data/dict/*.txt',
'data/emb/*.tar',
'data/model/*.tar',
]
},
install_requires=requirements
)