-
-
Notifications
You must be signed in to change notification settings - Fork 530
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
1 parent
256e85e
commit e090916
Showing
4 changed files
with
36 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
Changelog | ||
========= | ||
|
||
0.1.0 (2013-MM-DD) | ||
0.1.0 (2013-10-20) | ||
------------------ | ||
- First public release. |
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 |
---|---|---|
|
@@ -23,23 +23,23 @@ | |
setup( | ||
name="sumy", | ||
version=sumy.__version__, | ||
description="Module for automatic text summarization of HTML documents.", | ||
description="Module for automatic summarization of text documents and HTML pages.", | ||
long_description=long_description, | ||
author="Michal Belica", | ||
author_email="[email protected]", | ||
url="https://github.com/miso-belica/sumy", | ||
license=license, | ||
keywords=[ | ||
"data mining", | ||
"text summarization", | ||
"automatic summarization", | ||
"data reduction", | ||
"web-data extraction", | ||
"NLP", | ||
"natural language processing", | ||
"latent semantic analysis", | ||
"LSA", | ||
"singular value decomposition", | ||
"SVD" | ||
"TextRank", | ||
"LexRank", | ||
], | ||
dependency_links=[ | ||
"http://github.com/miso-belica/readability.py/tarball/master", | ||
|
@@ -62,9 +62,9 @@ | |
"sumy.evaluation", | ||
"sumy.models", | ||
"sumy.models.dom", | ||
"sumy.parsers", | ||
"sumy.nlp", | ||
"sumy.nlp.stemmers", | ||
"sumy.parsers", | ||
"sumy.summarizers", | ||
], | ||
package_data={"sumy": [ | ||
|
@@ -78,18 +78,24 @@ | |
"sumy_eval-%s = sumy.evaluation.__main__:main" % VERSION_SUFFIX, | ||
] | ||
}, | ||
classifiers=( | ||
"Development Status :: 1 - Planning", | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
"Natural Language :: Czech", | ||
"License :: OSI Approved :: Apache Software License", | ||
|
||
"Natural Language :: Czech", | ||
"Natural Language :: Slovak", | ||
"Natural Language :: English", | ||
"Natural Language :: German", | ||
|
||
"Topic :: Education", | ||
"Topic :: Internet", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Topic :: Text Processing :: Filters", | ||
"Topic :: Text Processing :: Linguistic", | ||
"Topic :: Text Processing :: Markup :: HTML", | ||
|
||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
|
@@ -99,5 +105,5 @@ | |
"Programming Language :: Python :: 3.2", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
), | ||
], | ||
) |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
|
||
|
||
__author__ = "Michal Belica" | ||
__version__ = "0.0.1" | ||
__version__ = "0.1.0" |