Skip to content

Commit 0de3250

Browse files
committed
Рефакторинг кода
1 parent 45b5004 commit 0de3250

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ $ pip install ruts
2727
* python 3.6+
2828
* nltk
2929
* pymorphy2
30+
* scipy
3031
* spacy
3132

3233
Библиотека по умолчанию использует токенизатор от nltk, который необходимо предварительно скачать:

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
nltk
22
pymorphy2
3+
scipy
34
spacy>=2.0.12

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
README = f.read()
1212

1313
INSTALL_REQUIRES = [
14+
'scipy',
1415
'nltk',
1516
'pymorphy2',
1617
'spacy>=2.0.12'
@@ -40,7 +41,7 @@
4041
author='Шкарин Сергей, Смирнова Екатерина',
4142
author_email='kouki.sergey@gmail.com, ekanerina@yandex.ru',
4243
url='https://github.com/SergeyShk/ruTS',
43-
download_url='https://github.com/SergeyShk/ruTS/archive/0.1.0.tar.gz',
44+
download_url='https://github.com/SergeyShk/ruTS/archive/0.4.0.tar.gz',
4445
packages=find_packages(exclude=('tests.*', 'tests')),
4546
python_requires='>=3.6',
4647
classifiers=(

0 commit comments

Comments
 (0)