km-num2text 0.1.0__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.
- km_num2text-0.1.0/PKG-INFO +13 -0
- km_num2text-0.1.0/README.md +1 -0
- km_num2text-0.1.0/km_num2text.egg-info/PKG-INFO +13 -0
- km_num2text-0.1.0/km_num2text.egg-info/SOURCES.txt +7 -0
- km_num2text-0.1.0/km_num2text.egg-info/dependency_links.txt +1 -0
- km_num2text-0.1.0/km_num2text.egg-info/requires.txt +3 -0
- km_num2text-0.1.0/km_num2text.egg-info/top_level.txt +1 -0
- km_num2text-0.1.0/pyproject.toml +21 -0
- km_num2text-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: km_num2text
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: This is a small project built for converting from number (roman or khmer) to text based.
|
|
5
|
+
Author-email: Natt Korat <natt.korat@cadt.edu.kh>
|
|
6
|
+
Project-URL: Homepage, https://github.com/nattkorat/km_num2text.git
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: yaml
|
|
10
|
+
Requires-Dist: deep-translator
|
|
11
|
+
Requires-Dist: num2words
|
|
12
|
+
|
|
13
|
+
# Khmer Number to Text
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Khmer Number to Text
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: km_num2text
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: This is a small project built for converting from number (roman or khmer) to text based.
|
|
5
|
+
Author-email: Natt Korat <natt.korat@cadt.edu.kh>
|
|
6
|
+
Project-URL: Homepage, https://github.com/nattkorat/km_num2text.git
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: yaml
|
|
10
|
+
Requires-Dist: deep-translator
|
|
11
|
+
Requires-Dist: num2words
|
|
12
|
+
|
|
13
|
+
# Khmer Number to Text
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
conf
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "km_num2text"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Natt Korat", email="natt.korat@cadt.edu.kh" },
|
|
10
|
+
]
|
|
11
|
+
description = "This is a small project built for converting from number (roman or khmer) to text based."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.10"
|
|
14
|
+
dependencies = [
|
|
15
|
+
"yaml",
|
|
16
|
+
"deep-translator",
|
|
17
|
+
"num2words"
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
"Homepage" = "https://github.com/nattkorat/km_num2text.git"
|