forked from DerwenAI/pytextrank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.49 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pytextrank',
version='1.1.0',
description='Python implimentation of TextRank for text document NLP parsing and summarization',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
keywords='textrank, parsing, automatic summarization, natural language processing, nlp, text analytics',
url='http://github.com/ceteri/pytextrank',
author='Paco Nathan',
author_email='[email protected]',
license='Apache License 2.0',
packages=['pytextrank'],
install_requires=[
'datasketch',
'graphviz',
'networkx',
'spacy',
'statistics',
],
zip_safe=False)