-
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
1 parent
4c775a3
commit e1fb6a0
Showing
3 changed files
with
20 additions
and
8 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 |
---|---|---|
|
@@ -10,13 +10,7 @@ | |
""" | ||
|
||
__title__ = "simplemma" | ||
__author__ = "Adrien Barbaresi, Juanjo Diaz and contributors" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__version__ = "1.1.1" | ||
|
||
|
||
from .__metadata__ import __title__, __author__, __email__, __license__, __version__ | ||
from .language_detector import LanguageDetector, in_target_language, langdetect | ||
from .lemmatizer import Lemmatizer, is_known, lemma_iterator, lemmatize, text_lemmatizer | ||
from .token_sampler import ( | ||
|
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
""" | ||
Package Metadata | ||
This module contains metadata information for the simplemma package. | ||
Attributes: | ||
__title__ (str): The title of the package. | ||
__author__ (str): The authors of the package. | ||
__email__ (str): The contact email for the package. | ||
__license__ (str): The license under which the package is distributed. | ||
__version__ (str): The current version of the package. | ||
""" | ||
|
||
__title__ = "simplemma" | ||
__author__ = "Adrien Barbaresi, Juanjo Diaz and contributors" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__version__ = "1.1.1" |
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