Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
internaut committed Dec 20, 2019
1 parent 1c4a36f commit 1cbdcdf
Show file tree
Hide file tree
Showing 10 changed files with 335 additions and 302 deletions.
6 changes: 0 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,6 @@ Limits
Installation
============

.. warning::

This package is currently in pre-release testing phase for version 0.9.0. The latest release candidate is available
on PyPI and can be only installed when explicitly stating the exact version and release candidate, e.g. with
``pip install tmtoolkit[recommended]==0.9.0rc3``.


The package *tmtoolkit* is available on `PyPI <https://pypi.org/project/tmtoolkit/>`_ and can be installed via
Python package manager *pip*. It is highly recommended to install tmtoolkit and its dependencies in a
Expand Down
Binary file modified doc/source/data/news_articles_100.xlsx
Binary file not shown.
6 changes: 0 additions & 6 deletions doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
Installation
============

.. warning::

This package is currently in pre-release testing phase for version 0.9.0. The latest release candidate is available
on PyPI and can be only installed when explicitly stating the exact version and release candidate, e.g. with
``pip install tmtoolkit[recommended]==0.9.0rc3``.

The package *tmtoolkit* is available on `PyPI <https://pypi.org/project/tmtoolkit/>`_ and can be installed via
Python package manager *pip*. It is highly recommended to install tmtoolkit and its dependencies in a
`Python Virtual Environment ("venv") <https://docs.python.org/3/tutorial/venv.html>`_ and upgrade to the latest
Expand Down
23 changes: 23 additions & 0 deletions doc/source/intro.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
tmtookit: Text mining and topic modeling toolkit
================================================

|pypi| |pypi_downloads| |rtd| |travis| |coverage|

*tmtoolkit* is a set of tools for text mining and topic modeling with Python developed especially for the use in the
social sciences. It aims for easy installation, extensive documentation and a clear programming interface while
offering good performance on large datasets by the means of vectorized operations (via NumPy) and parallel computation
Expand Down Expand Up @@ -112,3 +114,24 @@ to follow along using these notebooks, you can

There are also a few other examples as plain Python scripts available in the
`examples folder <https://github.com/WZBSocialScienceCenter/tmtoolkit/tree/master/examples>`_ of the GitHub repository.


.. |pypi| image:: https://badge.fury.io/py/tmtoolkit.svg
:target: https://badge.fury.io/py/tmtoolkit
:alt: PyPI Version

.. |pypi_downloads| image:: https://img.shields.io/pypi/dm/tmtoolkit
:target: https://pypi.org/project/tmtoolkit/
:alt: Downloads from PyPI

.. |travis| image:: https://travis-ci.org/WZBSocialScienceCenter/tmtoolkit.svg?branch=master
:target: https://travis-ci.org/WZBSocialScienceCenter/tmtoolkit
:alt: Travis CI Build Status

.. |coverage| image:: https://raw.githubusercontent.com/WZBSocialScienceCenter/tmtoolkit/master/coverage.svg?sanitize=true
:target: https://github.com/WZBSocialScienceCenter/tmtoolkit/tree/master/tests
:alt: Coverage status

.. |rtd| image:: https://readthedocs.org/projects/tmtoolkit/badge/?version=latest
:target: https://tmtoolkit.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
476 changes: 238 additions & 238 deletions doc/source/preprocessing.ipynb

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions doc/source/text_corpora.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,12 @@
"name": "stdout",
"output_type": "stream",
"text": [
"sample2 :\n",
"Here comes the second example.\n",
"\n",
"This one contains three lines of plain text which means two paragraphs.\n",
"---\n",
"\n",
"sample1 :\n",
"This is the first example file. ☺\n",
"---\n",
Expand All @@ -210,12 +216,6 @@
"\n",
"The third and final paragraph.\n",
"---\n",
"\n",
"sample2 :\n",
"Here comes the second example.\n",
"\n",
"This one contains three lines of plain text which means two paragraphs.\n",
"---\n",
"\n"
]
}
Expand Down
106 changes: 64 additions & 42 deletions doc/source/topic_modeling.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions doc/source/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Version history
===============

0.9.0 - upcoming
----------------
0.9.0 - 2019-12-20
------------------

* added usage and API documentation
* added support for Arun 2010 metric in `tm_gensim` (thx to @mcooper)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import setup, find_packages

__title__ = 'tmtoolkit'
__version__ = '0.9.0-rc3'
__version__ = '0.9.0'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

Expand Down
2 changes: 1 addition & 1 deletion tmtoolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@


__title__ = 'tmtoolkit'
__version__ = '0.9.0-rc3'
__version__ = '0.9.0'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

0 comments on commit 1cbdcdf

Please sign in to comment.