scriptconv 0.0.2a2__tar.gz → 0.0.3a1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/PKG-INFO +18 -9
  2. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/README.md +15 -6
  3. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/pyproject.toml +6 -2
  4. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/version.py +2 -2
  5. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/PKG-INFO +18 -9
  6. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/LICENSE +0 -0
  7. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/requirements.txt +0 -0
  8. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/__init__.py +0 -0
  9. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/__main__.py +0 -0
  10. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/notation.py +0 -0
  11. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/py.typed +0 -0
  12. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/scripts.py +0 -0
  13. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/translit.py +0 -0
  14. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/SOURCES.txt +0 -0
  15. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/dependency_links.txt +0 -0
  16. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/requires.txt +0 -0
  17. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/top_level.txt +0 -0
  18. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/setup.cfg +0 -0
  19. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_cli.py +0 -0
  20. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_examples.py +0 -0
  21. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_notation.py +0 -0
  22. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_scripts.py +0 -0
  23. {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_translit.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scriptconv
3
- Version: 0.0.2a2
4
- Summary: Shared script-conversion core — ISO-15924 detection, IPA↔ARPA/X-SAMPA/Lexique, Buckwalter, Hangul→jamo
3
+ Version: 0.0.3a1
4
+ Summary: Zero-dependency script & phoneme-notation core — ISO-15924 detection & metadata, IPA↔ARPABET/X-SAMPA/Lexique/Kirshenbaum/Cotovía/RFE, Buckwalter↔Arabic, Hangul→jamo, kana
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://github.com/TigreGotico/scriptconv
7
7
  Project-URL: Issues, https://github.com/TigreGotico/scriptconv/issues
8
- Keywords: ipa,arpabet,x-sampa,lexique,buckwalter,hangul,script,iso15924,tts,g2p,phoneme
8
+ Keywords: ipa,arpabet,x-sampa,kirshenbaum,cotovia,rfe,lexique,buckwalter,hangul,jamo,kana,transliteration,notation,phoneme,phonetic-alphabet,script,iso15924,unicode,tts,g2p
9
9
  Classifier: Development Status :: 3 - Alpha
10
10
  Classifier: Intended Audience :: Developers
11
11
  Classifier: Intended Audience :: Science/Research
@@ -31,12 +31,21 @@ Dynamic: license-file
31
31
  [![Build Tests](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml/badge.svg?branch=dev)](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml)
32
32
  [![PyPI version](https://img.shields.io/pypi/v/scriptconv.svg)](https://pypi.org/project/scriptconv/)
33
33
 
34
- **scriptconv** is a zero-dependency Python library for written-script operations:
35
- ISO-15924 script identification and metadata, character-range detection, language-to-script
36
- mapping, phoneme-notation transcoding (IPA ↔ ARPABET / X-SAMPA / Lexique / Kirshenbaum / Cotovía / RFE,
37
- Buckwalter Arabic script), and orthographic decomposition of Hangul syllable blocks into
38
- jamo letters. Every conversion is a pure data table or arithmetic operation; no linguistic
39
- rules, no external files, no runtime dependencies beyond the Python standard library.
34
+ **scriptconv** is a zero-dependency Python library for written-script and
35
+ phoneme-notation operations:
36
+
37
+ - **Script identification & metadata** ISO-15924 detection, character-range
38
+ lookup, typological `script_type`, base direction, mixed-script segmentation
39
+ (`script_runs`), and language script mapping.
40
+ - **Phoneme-notation transcoding** — IPA ↔ ARPABET, X-SAMPA, Lexique,
41
+ Kirshenbaum, Cotovía and RFE, routed through IPA, with queryable per-notation
42
+ fidelity metadata (`NOTATION_INFO`) and a `looks_like_ipa` detector.
43
+ - **Script transliteration & decomposition** — Buckwalter ↔ Arabic script,
44
+ Hangul → jamo (compatibility or conjoining), Hiragana ↔ Katakana.
45
+
46
+ Every conversion is a pure data table or arithmetic operation — **no
47
+ phonemization**, no linguistic rules, no external files, and no runtime
48
+ dependencies beyond the Python standard library.
40
49
 
41
50
  Transcoding is reversible where the target inventory permits — see
42
51
  [Fidelity guarantees](#fidelity-guarantees) for the exact per-notation guarantees.
@@ -4,12 +4,21 @@
4
4
  [![Build Tests](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml/badge.svg?branch=dev)](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml)
5
5
  [![PyPI version](https://img.shields.io/pypi/v/scriptconv.svg)](https://pypi.org/project/scriptconv/)
6
6
 
7
- **scriptconv** is a zero-dependency Python library for written-script operations:
8
- ISO-15924 script identification and metadata, character-range detection, language-to-script
9
- mapping, phoneme-notation transcoding (IPA ↔ ARPABET / X-SAMPA / Lexique / Kirshenbaum / Cotovía / RFE,
10
- Buckwalter Arabic script), and orthographic decomposition of Hangul syllable blocks into
11
- jamo letters. Every conversion is a pure data table or arithmetic operation; no linguistic
12
- rules, no external files, no runtime dependencies beyond the Python standard library.
7
+ **scriptconv** is a zero-dependency Python library for written-script and
8
+ phoneme-notation operations:
9
+
10
+ - **Script identification & metadata** ISO-15924 detection, character-range
11
+ lookup, typological `script_type`, base direction, mixed-script segmentation
12
+ (`script_runs`), and language script mapping.
13
+ - **Phoneme-notation transcoding** — IPA ↔ ARPABET, X-SAMPA, Lexique,
14
+ Kirshenbaum, Cotovía and RFE, routed through IPA, with queryable per-notation
15
+ fidelity metadata (`NOTATION_INFO`) and a `looks_like_ipa` detector.
16
+ - **Script transliteration & decomposition** — Buckwalter ↔ Arabic script,
17
+ Hangul → jamo (compatibility or conjoining), Hiragana ↔ Katakana.
18
+
19
+ Every conversion is a pure data table or arithmetic operation — **no
20
+ phonemization**, no linguistic rules, no external files, and no runtime
21
+ dependencies beyond the Python standard library.
13
22
 
14
23
  Transcoding is reversible where the target inventory permits — see
15
24
  [Fidelity guarantees](#fidelity-guarantees) for the exact per-notation guarantees.
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  name = "scriptconv"
7
7
  dynamic = ["version", "dependencies"]
8
- description = "Shared script-conversion core — ISO-15924 detection, IPA↔ARPA/X-SAMPA/Lexique, Buckwalter, Hangul→jamo"
8
+ description = "Zero-dependency script & phoneme-notation core — ISO-15924 detection & metadata, IPA↔ARPABET/X-SAMPA/Lexique/Kirshenbaum/Cotovía/RFE, Buckwalter↔Arabic, Hangul→jamo, kana"
9
9
  readme = "README.md"
10
10
  license = {text = "Apache-2.0"}
11
11
  requires-python = ">=3.10"
@@ -22,7 +22,11 @@ classifiers = [
22
22
  "License :: OSI Approved :: Apache Software License",
23
23
  "Operating System :: OS Independent",
24
24
  ]
25
- keywords = ["ipa", "arpabet", "x-sampa", "lexique", "buckwalter", "hangul", "script", "iso15924", "tts", "g2p", "phoneme"]
25
+ keywords = [
26
+ "ipa", "arpabet", "x-sampa", "kirshenbaum", "cotovia", "rfe", "lexique",
27
+ "buckwalter", "hangul", "jamo", "kana", "transliteration", "notation",
28
+ "phoneme", "phonetic-alphabet", "script", "iso15924", "unicode", "tts", "g2p",
29
+ ]
26
30
 
27
31
  [tool.setuptools.dynamic]
28
32
  version = {attr = "scriptconv.version.VERSION_STR"}
@@ -1,8 +1,8 @@
1
1
  # START_VERSION_BLOCK
2
2
  VERSION_MAJOR = 0
3
3
  VERSION_MINOR = 0
4
- VERSION_BUILD = 2
5
- VERSION_ALPHA = 2
4
+ VERSION_BUILD = 3
5
+ VERSION_ALPHA = 1
6
6
  # END_VERSION_BLOCK
7
7
 
8
8
  VERSION_STR = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scriptconv
3
- Version: 0.0.2a2
4
- Summary: Shared script-conversion core — ISO-15924 detection, IPA↔ARPA/X-SAMPA/Lexique, Buckwalter, Hangul→jamo
3
+ Version: 0.0.3a1
4
+ Summary: Zero-dependency script & phoneme-notation core — ISO-15924 detection & metadata, IPA↔ARPABET/X-SAMPA/Lexique/Kirshenbaum/Cotovía/RFE, Buckwalter↔Arabic, Hangul→jamo, kana
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://github.com/TigreGotico/scriptconv
7
7
  Project-URL: Issues, https://github.com/TigreGotico/scriptconv/issues
8
- Keywords: ipa,arpabet,x-sampa,lexique,buckwalter,hangul,script,iso15924,tts,g2p,phoneme
8
+ Keywords: ipa,arpabet,x-sampa,kirshenbaum,cotovia,rfe,lexique,buckwalter,hangul,jamo,kana,transliteration,notation,phoneme,phonetic-alphabet,script,iso15924,unicode,tts,g2p
9
9
  Classifier: Development Status :: 3 - Alpha
10
10
  Classifier: Intended Audience :: Developers
11
11
  Classifier: Intended Audience :: Science/Research
@@ -31,12 +31,21 @@ Dynamic: license-file
31
31
  [![Build Tests](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml/badge.svg?branch=dev)](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml)
32
32
  [![PyPI version](https://img.shields.io/pypi/v/scriptconv.svg)](https://pypi.org/project/scriptconv/)
33
33
 
34
- **scriptconv** is a zero-dependency Python library for written-script operations:
35
- ISO-15924 script identification and metadata, character-range detection, language-to-script
36
- mapping, phoneme-notation transcoding (IPA ↔ ARPABET / X-SAMPA / Lexique / Kirshenbaum / Cotovía / RFE,
37
- Buckwalter Arabic script), and orthographic decomposition of Hangul syllable blocks into
38
- jamo letters. Every conversion is a pure data table or arithmetic operation; no linguistic
39
- rules, no external files, no runtime dependencies beyond the Python standard library.
34
+ **scriptconv** is a zero-dependency Python library for written-script and
35
+ phoneme-notation operations:
36
+
37
+ - **Script identification & metadata** ISO-15924 detection, character-range
38
+ lookup, typological `script_type`, base direction, mixed-script segmentation
39
+ (`script_runs`), and language script mapping.
40
+ - **Phoneme-notation transcoding** — IPA ↔ ARPABET, X-SAMPA, Lexique,
41
+ Kirshenbaum, Cotovía and RFE, routed through IPA, with queryable per-notation
42
+ fidelity metadata (`NOTATION_INFO`) and a `looks_like_ipa` detector.
43
+ - **Script transliteration & decomposition** — Buckwalter ↔ Arabic script,
44
+ Hangul → jamo (compatibility or conjoining), Hiragana ↔ Katakana.
45
+
46
+ Every conversion is a pure data table or arithmetic operation — **no
47
+ phonemization**, no linguistic rules, no external files, and no runtime
48
+ dependencies beyond the Python standard library.
40
49
 
41
50
  Transcoding is reversible where the target inventory permits — see
42
51
  [Fidelity guarantees](#fidelity-guarantees) for the exact per-notation guarantees.
File without changes
File without changes