Skip to content

Commit

Permalink
version bump: 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Nov 19, 2021
1 parent 1e3ff0d commit c8866b5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ History
=======


0.5.0
-----

* faster, more efficient code
* dropped support for Python 3.5


0.4.0
-----

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include AUTHORS.rst
#include CONTRIBUTING.rst
include CITATION.cff
include HISTORY.rst
include LICENSE
include README.rst
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@ Code Language Word pairs Acc. Comments
``ro`` Romanian 311,411
``ru`` Russian 607,416 alternative: `pymorphy2 <https://github.com/kmike/pymorphy2/>`_
``sk`` Slovak 846,453 0.87 on UD SK-SNK
``sl`` Slovene 97,050 low coverage
``sl`` Slovenian 97,050 low coverage
``sv`` Swedish 658,606 alternative: `lemmy <https://github.com/sorenlind/lemmy>`_
``tr`` Turkish 1,333,137 0.88 on UD-TR-Boun
``uk`` Ukranian 190,472 alternative: `pymorphy2 <https://github.com/kmike/pymorphy2/>`_
``uk`` Ukrainian 190,472 alternative: `pymorphy2 <https://github.com/kmike/pymorphy2/>`_
====== ================== ========== ===== =========================================================================


Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ def get_version(package):
name='simplemma',
package_data={'simplemma': ['data/*.plzma']},
packages=find_packages(include=['simplemma', 'simplemma.*']),
project_urls={
"Source": "https://github.com/adbar/",
"Blog": "https://adrien.barbaresi.eu/blog/", # tag/simplemma
},
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
Expand Down
5 changes: 3 additions & 2 deletions simplemma/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"""Top-level package for Simplemma."""

__title__ = 'simplemma'
__author__ = 'Adrien Barbaresi'
__email__ = '[email protected]'
__version__ = '0.4.0'
__license__ = 'MIT'
__version__ = '0.5.0'


from .simplemma import load_data, lemmatize, simple_tokenizer, text_lemmatizer, is_known

0 comments on commit c8866b5

Please sign in to comment.