Skip to content

Commit

Permalink
Bump v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miso-belica committed Oct 20, 2013
1 parent 256e85e commit e090916
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
Changelog
=========

0.1.0 (2013-MM-DD)
0.1.0 (2013-10-20)
------------------
- First public release.
26 changes: 19 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _Python: http://www.python.org/

=========================
Automatic text summarizer
=========================
Expand Down Expand Up @@ -26,23 +28,33 @@ Here are some other summarizers:

Installation
------------
Currently only from git repo (make sure you have
`Python installed <https://python-guide.readthedocs.org/en/latest/#getting-started>`_)
Make sure you have Python_ 2.6+/3.2+ and `pip <https://crate.io/packages/pip/>`_
(`Windows <http://docs.python-guide.org/en/latest/starting/install/win/>`_,
`Linux <http://docs.python-guide.org/en/latest/starting/install/linux/>`_) installed.
Run simply (preferred way):

.. code-block:: bash
$ wget https://github.com/miso-belica/sumy/archive/master.zip # download the sources
$ unzip master.zip # extract the downloaded file
$ cd sumy-master/
$ [sudo] python setup.py install # install the package
$ [sudo] pip install sumy
Or simply run:
Or for the fresh version:

.. code-block:: bash
$ [sudo] pip install git+git://github.com/miso-belica/sumy.git
Or if you have to:

.. code-block:: bash
$ wget https://github.com/miso-belica/sumy/archive/master.zip # download the sources
$ unzip master.zip # extract the downloaded file
$ cd sumy-master/
$ [sudo] python setup.py install # install the package
Usage
-----
Sumy contains command line utility for quick summarization of documents.
Expand Down
24 changes: 15 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": [
Expand All @@ -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",
Expand All @@ -99,5 +105,5 @@
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
),
],
)
2 changes: 1 addition & 1 deletion sumy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@


__author__ = "Michal Belica"
__version__ = "0.0.1"
__version__ = "0.1.0"

0 comments on commit e090916

Please sign in to comment.