iladub 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.
@@ -0,0 +1,28 @@
1
+ # Byte-compiled / optimized
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Distribution / packaging
7
+ build/
8
+ dist/
9
+ *.egg-info/
10
+ .eggs/
11
+
12
+ # Virtual environments
13
+ .venv/
14
+ venv/
15
+ env/
16
+
17
+ # Test / coverage
18
+ .pytest_cache/
19
+ .ruff_cache/
20
+ .coverage
21
+ htmlcov/
22
+
23
+ # Tooling / editors
24
+ .mypy_cache/
25
+ .idea/
26
+ .vscode/
27
+ *.swp
28
+ .DS_Store
iladub-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 François Rosselet
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
iladub-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: iladub
3
+ Version: 0.0.1
4
+ Summary: Semantic document compiling
5
+ Project-URL: Homepage, https://github.com/iladub/iladub
6
+ Project-URL: Repository, https://github.com/iladub/iladub
7
+ Project-URL: Issues, https://github.com/iladub/iladub/issues
8
+ Author: François Rosselet
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: compiler,documents,extraction,nlp,semantic
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Text Processing :: Markup
20
+ Requires-Python: >=3.11
21
+ Provides-Extra: dev
22
+ Requires-Dist: pytest>=8; extra == 'dev'
23
+ Requires-Dist: ruff>=0.6; extra == 'dev'
24
+ Description-Content-Type: text/markdown
25
+
26
+ # iladub
27
+
28
+ > Semantic document compiling.
29
+
30
+ **iladub** (𒅍𒁾, Sumerian *íl* "to carry" + *dub* "tablet/document" — "tablet-bearer") is a toolkit for
31
+ compiling documents into semantic, structured representations.
32
+
33
+ > [!NOTE]
34
+ > Early development — APIs are not yet stable.
35
+
36
+ ## Installation
37
+
38
+ ```bash
39
+ pip install iladub
40
+ ```
41
+
42
+ ## Usage
43
+
44
+ ```python
45
+ import iladub
46
+
47
+ print(iladub.__version__)
48
+ ```
49
+
50
+ ## Development
51
+
52
+ ```bash
53
+ git clone https://github.com/iladub/iladub
54
+ cd iladub
55
+ pip install -e ".[dev]"
56
+ pytest
57
+ ```
58
+
59
+ ## License
60
+
61
+ [MIT](LICENSE)
iladub-0.0.1/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # iladub
2
+
3
+ > Semantic document compiling.
4
+
5
+ **iladub** (𒅍𒁾, Sumerian *íl* "to carry" + *dub* "tablet/document" — "tablet-bearer") is a toolkit for
6
+ compiling documents into semantic, structured representations.
7
+
8
+ > [!NOTE]
9
+ > Early development — APIs are not yet stable.
10
+
11
+ ## Installation
12
+
13
+ ```bash
14
+ pip install iladub
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```python
20
+ import iladub
21
+
22
+ print(iladub.__version__)
23
+ ```
24
+
25
+ ## Development
26
+
27
+ ```bash
28
+ git clone https://github.com/iladub/iladub
29
+ cd iladub
30
+ pip install -e ".[dev]"
31
+ pytest
32
+ ```
33
+
34
+ ## License
35
+
36
+ [MIT](LICENSE)
@@ -0,0 +1,46 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "iladub"
7
+ version = "0.0.1"
8
+ description = "Semantic document compiling"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [{ name = "François Rosselet" }]
14
+ keywords = ["documents", "semantic", "compiler", "extraction", "nlp"]
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Topic :: Text Processing :: Markup",
24
+ ]
25
+ dependencies = []
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/iladub/iladub"
29
+ Repository = "https://github.com/iladub/iladub"
30
+ Issues = "https://github.com/iladub/iladub/issues"
31
+
32
+ [project.optional-dependencies]
33
+ dev = [
34
+ "pytest>=8",
35
+ "ruff>=0.6",
36
+ ]
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["src/iladub"]
40
+
41
+ [tool.ruff]
42
+ line-length = 100
43
+ target-version = "py311"
44
+
45
+ [tool.pytest.ini_options]
46
+ testpaths = ["tests"]
@@ -0,0 +1,5 @@
1
+ """iladub — semantic document compiling."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+ __all__ = ["__version__"]
@@ -0,0 +1,6 @@
1
+ import iladub
2
+
3
+
4
+ def test_version_is_exposed():
5
+ assert isinstance(iladub.__version__, str)
6
+ assert iladub.__version__