-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
32 lines (31 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
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name='pysummarize',
version='0.6.0',
description='Simple multi-language Python and NLTK-based implementation of text summarization',
url='https://github.com/despawnerer/summarize',
author='Aleksei Voronov',
author_email='despawn@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Text Processing',
'Natural Language :: English',
'Natural Language :: Spanish',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='language nltk linguistics nlp',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[
'Distance>=0.1.3',
'networkx>=1.9.1',
'nltk>=3.0.3',
],
)