-
Notifications
You must be signed in to change notification settings - Fork 90
/
setup.py
26 lines (25 loc) · 869 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
from setuptools import setup, find_packages
setup(name='ekphrasis',
version='0.5.4',
description='Text processing tool, geared towards text from '
'social networks, such as Twitter or Facebook. '
'Ekphrasis performs tokenization, word normalization, '
'word segmentation (for splitting hashtags) '
'and spell correction.',
url='https://github.com/cbaziotis/ekphrasis',
author='Christos Baziotis',
license='MIT',
packages=find_packages(exclude=['docs', 'tests*', 'analysis']),
install_requires=[
'termcolor',
'tqdm',
'colorama',
'ujson',
'matplotlib',
'nltk',
'ftfy',
'numpy'
],
include_package_data=True
)