-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (33 loc) · 1.13 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
from setuptools import setup
setup(
name='kts_linguistics',
version='0.1.11',
description='Set of packages: spellcheck, phonetics, text processing and more',
long_description=open('README.md').read(),
author='KTS',
author_email='o.morozenkov@ktsstudio.ru',
url='https://github.com/KTSStudio/kts_linguistics',
license='MIT',
# See: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic'
],
install_requires=[
'scikit-learn>=0.19,<=0.23.1',
'nltk>=3.2,<=3.5',
'gensim>=3.1,<=3.8.3',
'pymorphy2>=0.8,<0.9',
'transliterate>=1.10,<1.11',
'python-Levenshtein>=0.12,<0.13',
],
packages=['kts_linguistics',
'kts_linguistics.corpora',
'kts_linguistics.phonetics',
'kts_linguistics.spellcheck',
'kts_linguistics.string_transforms',
'kts_linguistics.synonyms',
'kts_linguistics.test'],
include_package_data=True,
)