-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.46 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
from distutils.core import setup
# Instructions from http://peterdowns.com/posts/first-time-with-pypi.html
# and https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name = 'summa',
packages = ['summa', 'summa.preprocessing'],
package_data = {
'summa': ['README', 'LICENSE']
},
version = '0.0.7',
description = 'A text summarization and keyword extraction package',
author = 'Federico Barrios, Federico Lopez',
author_email = '[email protected]',
url = 'http://summa.fbarrios.com.ar/',
download_url = 'https://github.com/summanlp/textrank/tarball/v0.0.2',
keywords = ['summa', 'nlp', 'summarization', "NLP", "natural language processing", "automatic summarization",
"keywords", "summary", "textrank", "pagerank"],
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7'
],
long_description = open('README').read()
)