-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
33 lines (30 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
#!/usr/bin/env python
from setuptools import setup # type: ignore
try:
with open('README.rst') as file:
long_description = file.read()
except IOError:
long_description = "missing"
setup(
name='syntok',
version='1.4.4',
url='https://github.com/fnl/syntok',
author='Florian Leitner',
author_email='[email protected]',
description='sentence segmentation and word tokenization toolkit',
keywords='sentence segmenter splitter split word tokenizer token nlp',
license='MIT',
license_files = ('LICENSE'),
packages=['syntok'],
install_requires=['regex'], # handles all Unicode categories in Regular Expressions
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
],
)