-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from twardoch/master
Version 2.0.4
- Loading branch information
Showing
53 changed files
with
29,421 additions
and
66 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_priv/ | ||
.idea/ | ||
.dccache | ||
*.code-workspace | ||
|
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 |
---|---|---|
@@ -1,5 +1,28 @@ | ||
|
||
# Changelog | ||
|
||
## Version 0.1 (development) | ||
## Version 2.0.4 (2021-08-10) | ||
|
||
- added `--stats` CLI option to list supported scripts and orthographies | ||
|
||
## Version 2.0.3 (2021-08-10) | ||
|
||
- allows for auto-detection of explicit input of ISO 15924 script | ||
- allows for fuzzy or explicit input of ISO 639-2/Wiktionary language code | ||
- new CLI options | ||
|
||
## Version 2.0.2 (2021-08-10) | ||
|
||
- added `wiktra/wikt/data/data.json` | ||
|
||
## Version 2.0.1 (2021-08-09) | ||
|
||
- added `languages/extradata*` Lua modules | ||
|
||
## Version 2.0.0 (2021-08-08) | ||
|
||
- initial | ||
- completely refactored | ||
- added `wiktrapy` CLI tool for transliteration | ||
- added `wiktrapy_update` CLI tool for updating the built-in Wiktionary modules | ||
- updated the built-in Wiktionary modules | ||
- works more robustly with Lua 5.4.3 and more Python 3 environments |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
recursive-include wiktra/wikt *.lua | ||
recursive-include wiktra/wikt *.lua | ||
recursive-include wiktra/wikt *.json |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
lupa | ||
pywikiapi | ||
langcodes[data] | ||
fonttools[unicode] |
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 |
---|---|---|
|
@@ -43,16 +43,16 @@ def get_requirements(*args): | |
|
||
setup( | ||
name=f"{NAME}", | ||
version="2.0.0", | ||
version=get_version(), | ||
description="Transliteration tool using Wiktionary transliteration modules", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Khuyagbaatar Batsuren", | ||
author_email="[email protected]", | ||
url=f"https://twardoch.github.io/{NAME}2/", | ||
project_urls={"Source": f"https://github.com/twardoch/{NAME}2/"}, | ||
url=f"https://github.com/kbatsuren/{NAME}/", | ||
project_urls={"Source": f"https://github.com/kbatsuren/{NAME}/"}, | ||
license="GPLv2", | ||
download_url=f"https://github.com/twardoch/{NAME}2", | ||
download_url=f"https://github.com/kbatsuren/{NAME}/", | ||
python_requires=">=3.9", | ||
install_requires=get_requirements("requirements.txt"), | ||
packages=find_packages(), | ||
|
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
# -*- coding: utf-8 -*- | ||
from .Wiktra import * | ||
|
||
__version__ = "2.0.0" | ||
__version__ = "2.0.4" | ||
__all__ = ['translite'] |
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
Oops, something went wrong.