takbon 0.0.1__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.
- takbon-0.0.1/PKG-INFO +30 -0
- takbon-0.0.1/README.md +18 -0
- takbon-0.0.1/pyproject.toml +17 -0
- takbon-0.0.1/takbon/__init__.py +12 -0
takbon-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: takbon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reserved for takbon (탁본), a tool that keeps translated documents from going silently stale: records which source version each translation follows and reports drift in CI. In active development.
|
|
5
|
+
Project-URL: Homepage, https://takbon.ryul1206.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/ryul1206/takbon
|
|
7
|
+
Author-email: "Jung, Hong-ryul" <jung.hr.1206@gmail.com>
|
|
8
|
+
License: MIT OR Apache-2.0
|
|
9
|
+
Keywords: ci,drift,i18n,localization,translation
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# takbon
|
|
14
|
+
|
|
15
|
+
Name reserved for **takbon**, a tool that keeps translated documents from going
|
|
16
|
+
silently stale. It records which source version each translation follows in a
|
|
17
|
+
lockfile, reports drift, and gates CI. A structural doc-sync layer is planned.
|
|
18
|
+
takbon verifies translations and does not translate. Reserved while in active
|
|
19
|
+
development.
|
|
20
|
+
|
|
21
|
+
A *takbon* is a rubbing taken from an engraved stone. When the stone is re-carved,
|
|
22
|
+
the rubbing goes stale. takbon detects exactly that for your translated documents.
|
|
23
|
+
(*Takbon* is the Korean reading of 拓本, the ink-rubbing practice that originated
|
|
24
|
+
in China, *tàběn*, and spread across East Asia, *takuhon* in Japanese.)
|
|
25
|
+
|
|
26
|
+
- Development: https://github.com/ryul1206/takbon
|
|
27
|
+
- Docs (planned): https://takbon.ryul1206.dev
|
|
28
|
+
|
|
29
|
+
This 0.0.1 release is a placeholder. Functional releases will ship a Rust binary
|
|
30
|
+
as maturin-built wheels under this same name.
|
takbon-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# takbon
|
|
2
|
+
|
|
3
|
+
Name reserved for **takbon**, a tool that keeps translated documents from going
|
|
4
|
+
silently stale. It records which source version each translation follows in a
|
|
5
|
+
lockfile, reports drift, and gates CI. A structural doc-sync layer is planned.
|
|
6
|
+
takbon verifies translations and does not translate. Reserved while in active
|
|
7
|
+
development.
|
|
8
|
+
|
|
9
|
+
A *takbon* is a rubbing taken from an engraved stone. When the stone is re-carved,
|
|
10
|
+
the rubbing goes stale. takbon detects exactly that for your translated documents.
|
|
11
|
+
(*Takbon* is the Korean reading of 拓本, the ink-rubbing practice that originated
|
|
12
|
+
in China, *tàběn*, and spread across East Asia, *takuhon* in Japanese.)
|
|
13
|
+
|
|
14
|
+
- Development: https://github.com/ryul1206/takbon
|
|
15
|
+
- Docs (planned): https://takbon.ryul1206.dev
|
|
16
|
+
|
|
17
|
+
This 0.0.1 release is a placeholder. Functional releases will ship a Rust binary
|
|
18
|
+
as maturin-built wheels under this same name.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "takbon"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name reserved for takbon (탁본), a tool that keeps translated documents from going silently stale: records which source version each translation follows and reports drift in CI. In active development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT OR Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Jung, Hong-ryul", email = "jung.hr.1206@gmail.com" }]
|
|
13
|
+
keywords = ["i18n", "translation", "localization", "drift", "ci"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://takbon.ryul1206.dev"
|
|
17
|
+
Repository = "https://github.com/ryul1206/takbon"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""takbon (탁본) keeps translated documents from going silently stale.
|
|
2
|
+
|
|
3
|
+
Records which source version each translation follows in a lockfile, reports
|
|
4
|
+
drift, and gates CI. Structural doc-sync is planned. takbon verifies
|
|
5
|
+
translations and does not translate. Name reserved while the tool is in
|
|
6
|
+
active development.
|
|
7
|
+
The real distribution will ship a Rust binary via maturin wheels.
|
|
8
|
+
|
|
9
|
+
Development: https://github.com/ryul1206/takbon
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.0.1"
|