forked from natasha/razdel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (26 loc) · 840 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
35
from setuptools import setup, find_packages
with open('README.md') as file:
description = file.read()
setup(
name='razdel',
version='0.5.0',
description='Splits russian text into tokens, sentences, section. Rule-based',
long_description=description,
long_description_content_type='text/markdown',
url='https://github.com/natasha/razdel',
author='Alexander Kukushkin',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='nlp, natural language processing, russian, token, sentence, tokenize',
packages=find_packages(),
entry_points={
'console_scripts': [
'razdel-ctl=razdel.tests.ctl:main'
],
},
install_requires=[]
)