-
Notifications
You must be signed in to change notification settings - Fork 12
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
6 changed files
with
92 additions
and
61 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
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 |
---|---|---|
|
@@ -48,7 +48,7 @@ def get_version(package): | |
author="Adrien Barbaresi", | ||
author_email="[email protected]", | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
classifiers=[ # https://pypi.org/classifiers/ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
|
@@ -57,6 +57,7 @@ def get_version(package): | |
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: Bulgarian", | ||
"Natural Language :: Catalan", | ||
"Natural Language :: Croatian", | ||
"Natural Language :: Czech", | ||
"Natural Language :: Danish", | ||
"Natural Language :: Dutch", | ||
|
@@ -66,14 +67,17 @@ def get_version(package): | |
"Natural Language :: Galician", | ||
"Natural Language :: German", | ||
"Natural Language :: Greek", | ||
"Natural Language :: Hindi", | ||
"Natural Language :: Hungarian", | ||
"Natural Language :: Icelandic", | ||
"Natural Language :: Indonesian", | ||
"Natural Language :: Irish", | ||
"Natural Language :: Italian", | ||
"Natural Language :: Latin", | ||
"Natural Language :: Latvian", | ||
"Natural Language :: Lithuanian", | ||
"Natural Language :: Macedonian", | ||
"Natural Language :: Malay", | ||
"Natural Language :: Norwegian", | ||
"Natural Language :: Polish", | ||
"Natural Language :: Portuguese", | ||
|
@@ -83,8 +87,10 @@ def get_version(package): | |
"Natural Language :: Slovenian", | ||
"Natural Language :: Spanish", | ||
"Natural Language :: Swedish", | ||
"Natural Language :: Thai", | ||
"Natural Language :: Turkish", | ||
"Natural Language :: Ukrainian", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
|
@@ -93,7 +99,10 @@ def get_version(package): | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Topic :: Software Development :: Internationalization", | ||
"Topic :: Software Development :: Localization", | ||
"Topic :: Text Processing :: Linguistic", | ||
"Typing :: Typed", | ||
], | ||
description="A simple multilingual lemmatizer for Python.", | ||
install_requires=requirements, | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,9 @@ | |
__author__ = "Adrien Barbaresi" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__version__ = "0.8.1" | ||
__version__ = "0.8.2" | ||
|
||
|
||
from .langdetect import in_target_language, lang_detector | ||
from .simplemma import lemmatize, lemma_iterator, text_lemmatizer, is_known | ||
from .tokenizer import simple_tokenizer |
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