forked from krzysiekfonal/textpipeliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 1.09 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
from setuptools import setup
setup(name='textpipeliner',
version='0.3.1',
description='textpipeliner - library for extracting specific words from sentences of a document',
long_description='This library allows you to extract specific words(in form of tuple) going through every '
'sentence of a document using custom created structure of extraction processing.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
],
keywords='nlp text mining text extraction',
url='https://github.com/krzysiekfonal/textpipeliner',
author='Krzysztof Fonal',
author_email='[email protected]',
license='MIT',
packages=['textpipeliner', 'textpipeliner.pipes'],
install_requires=[
'spacy', 'grammaregex'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=True)