forked from chartbeat-labs/textacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (44 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import io
import os
from setuptools import setup, find_packages
def read_file(fname, encoding='utf-8'):
path = os.path.join(os.path.dirname(__file__), fname)
return io.open(path, encoding=encoding).read()
setup(
name='textacy',
version='0.2.2',
description='Higher-level text processing, built on Spacy',
long_description=read_file('README.rst'),
url='https://github.com/chartbeat-labs/textacy',
download_url='https://pypi.python.org/pypi/textacy',
author='Burton DeWilde',
author_email='[email protected]',
license='Apache',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
'Topic :: Text Processing :: Linguistic',
],
keywords = 'textacy, spacy, nlp, text processing, linguistics',
packages=find_packages(),
install_requires=[
'cachetools',
'cld2-cffi',
'cytoolz',
'ftfy',
'fuzzywuzzy',
'networkx',
'numpy>=1.8.0',
'pyphen',
'scipy',
'scikit-learn',
'spacy>=0.100.7',
'unidecode',
],
)