-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
from distutils.core import setup | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name = 'summa', | ||
packages = ['summa', 'summa.preprocessing'], | ||
packages = find_packages(exclude=['test']), | ||
package_data = { | ||
'summa': ['README', 'LICENSE'] | ||
}, | ||
version = '0.1.0', | ||
description = 'A text summarization and keyword extraction package', | ||
description = 'A text summarization and keyword extraction package based on textrank', | ||
long_description=open('README').read(), | ||
author = 'Federico Barrios, Federico Lopez', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/summanlp/textrank', | ||
download_url = 'https://github.com/summanlp/textrank/tarball/v0.1.0', | ||
keywords = ['summa', 'nlp', 'summarization', "NLP", "natural language processing", "automatic summarization", | ||
"keywords", "summary", "textrank", "pagerank"], | ||
install_requires = [ | ||
'scipy >= 0.19' | ||
], | ||
python_requires = '>=2.7, <3.0', | ||
classifiers = [ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
|
||
'License :: OSI Approved :: MIT License', | ||
|
||
|
@@ -29,9 +30,13 @@ | |
'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' | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 2 :: Only' | ||
], | ||
long_description = open('README').read() | ||
test_suite="test", | ||
entry_points={ | ||
'console_scripts': [ | ||
'textrank = summa.textrank:main', | ||
], | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters