tdom 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.
tdom-0.0.1/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2025 Dave Peck <davepeck@davepeck.org>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
tdom-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: tdom
3
+ Version: 0.0.1
4
+ Summary: Placeholder for future library on PyPI using PEP 750 t-strings.
5
+ Author: t-strings
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/t-strings/tdom
8
+ Project-URL: Changelog, https://github.com/t-strings/tdom/releases
9
+ Project-URL: Issues, https://github.com/t-strings/tdom/issues
10
+ Project-URL: CI, https://github.com/t-strings/tdom/actions
11
+ Requires-Python: >=3.13
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Provides-Extra: test
15
+ Requires-Dist: pytest; extra == "test"
16
+ Dynamic: license-file
17
+
18
+ # tdom
19
+
20
+ A 🔥 t-string (aka PEP 750) DOM implementation for upcoming Python 3.14.
21
+
22
+ [![PyPI](https://img.shields.io/pypi/v/tdom.svg)](https://pypi.org/project/tdom/)
23
+ [![Tests](https://github.com/t-strings/tdom/actions/workflows/test.yml/badge.svg)](https://github.com/t-strings/tdom/actions/workflows/test.yml)
24
+ [![Changelog](https://img.shields.io/github/v/release/t-strings/tdom?include_prereleases&label=changelog)](https://github.com/t-strings/tdom/releases)
25
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/t-strings/tdom/blob/main/LICENSE)
26
+
27
+ Placeholder for future library on PyPI using PEP 750 t-strings.
28
+
29
+ ## Installation
30
+
31
+ Install this library using `pip`:
32
+
33
+ ```bash
34
+ pip install tdom
35
+ ```
36
+
37
+ ## Usage
38
+
39
+ Usage instructions go here.
40
+
41
+ ## Development
42
+
43
+ To contribute to this library, first checkout the code. Then create a new virtual environment:
44
+
45
+ ```bash
46
+ cd tdom
47
+ python -m venv venv
48
+ source venv/bin/activate
49
+ ```
50
+
51
+ Now install the dependencies and test dependencies:
52
+
53
+ ```bash
54
+ python -m pip install -e '.[test]'
55
+ ```
56
+
57
+ To run the tests:
58
+
59
+ ```bash
60
+ python -m pytest
61
+ ```
tdom-0.0.1/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # tdom
2
+
3
+ A 🔥 t-string (aka PEP 750) DOM implementation for upcoming Python 3.14.
4
+
5
+ [![PyPI](https://img.shields.io/pypi/v/tdom.svg)](https://pypi.org/project/tdom/)
6
+ [![Tests](https://github.com/t-strings/tdom/actions/workflows/test.yml/badge.svg)](https://github.com/t-strings/tdom/actions/workflows/test.yml)
7
+ [![Changelog](https://img.shields.io/github/v/release/t-strings/tdom?include_prereleases&label=changelog)](https://github.com/t-strings/tdom/releases)
8
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/t-strings/tdom/blob/main/LICENSE)
9
+
10
+ Placeholder for future library on PyPI using PEP 750 t-strings.
11
+
12
+ ## Installation
13
+
14
+ Install this library using `pip`:
15
+
16
+ ```bash
17
+ pip install tdom
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ Usage instructions go here.
23
+
24
+ ## Development
25
+
26
+ To contribute to this library, first checkout the code. Then create a new virtual environment:
27
+
28
+ ```bash
29
+ cd tdom
30
+ python -m venv venv
31
+ source venv/bin/activate
32
+ ```
33
+
34
+ Now install the dependencies and test dependencies:
35
+
36
+ ```bash
37
+ python -m pip install -e '.[test]'
38
+ ```
39
+
40
+ To run the tests:
41
+
42
+ ```bash
43
+ python -m pytest
44
+ ```
@@ -0,0 +1,24 @@
1
+ [project]
2
+ name = "tdom"
3
+ version = "0.0.1"
4
+ description = "Placeholder for future library on PyPI using PEP 750 t-strings."
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ authors = [{ name = "t-strings" }]
8
+ license = "MIT"
9
+ classifiers = []
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["setuptools"]
14
+ build-backend = "setuptools.build_meta"
15
+
16
+ [project.urls]
17
+ Homepage = "https://github.com/t-strings/tdom"
18
+ Changelog = "https://github.com/t-strings/tdom/releases"
19
+ Issues = "https://github.com/t-strings/tdom/issues"
20
+ CI = "https://github.com/t-strings/tdom/actions"
21
+
22
+
23
+ [project.optional-dependencies]
24
+ test = ["pytest"]
tdom-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ def example_function():
2
+ return 1 + 1
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: tdom
3
+ Version: 0.0.1
4
+ Summary: Placeholder for future library on PyPI using PEP 750 t-strings.
5
+ Author: t-strings
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/t-strings/tdom
8
+ Project-URL: Changelog, https://github.com/t-strings/tdom/releases
9
+ Project-URL: Issues, https://github.com/t-strings/tdom/issues
10
+ Project-URL: CI, https://github.com/t-strings/tdom/actions
11
+ Requires-Python: >=3.13
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Provides-Extra: test
15
+ Requires-Dist: pytest; extra == "test"
16
+ Dynamic: license-file
17
+
18
+ # tdom
19
+
20
+ A 🔥 t-string (aka PEP 750) DOM implementation for upcoming Python 3.14.
21
+
22
+ [![PyPI](https://img.shields.io/pypi/v/tdom.svg)](https://pypi.org/project/tdom/)
23
+ [![Tests](https://github.com/t-strings/tdom/actions/workflows/test.yml/badge.svg)](https://github.com/t-strings/tdom/actions/workflows/test.yml)
24
+ [![Changelog](https://img.shields.io/github/v/release/t-strings/tdom?include_prereleases&label=changelog)](https://github.com/t-strings/tdom/releases)
25
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/t-strings/tdom/blob/main/LICENSE)
26
+
27
+ Placeholder for future library on PyPI using PEP 750 t-strings.
28
+
29
+ ## Installation
30
+
31
+ Install this library using `pip`:
32
+
33
+ ```bash
34
+ pip install tdom
35
+ ```
36
+
37
+ ## Usage
38
+
39
+ Usage instructions go here.
40
+
41
+ ## Development
42
+
43
+ To contribute to this library, first checkout the code. Then create a new virtual environment:
44
+
45
+ ```bash
46
+ cd tdom
47
+ python -m venv venv
48
+ source venv/bin/activate
49
+ ```
50
+
51
+ Now install the dependencies and test dependencies:
52
+
53
+ ```bash
54
+ python -m pip install -e '.[test]'
55
+ ```
56
+
57
+ To run the tests:
58
+
59
+ ```bash
60
+ python -m pytest
61
+ ```
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ tdom/__init__.py
5
+ tdom.egg-info/PKG-INFO
6
+ tdom.egg-info/SOURCES.txt
7
+ tdom.egg-info/dependency_links.txt
8
+ tdom.egg-info/requires.txt
9
+ tdom.egg-info/top_level.txt
10
+ tests/test_tdom.py
@@ -0,0 +1,3 @@
1
+
2
+ [test]
3
+ pytest
@@ -0,0 +1 @@
1
+ tdom
@@ -0,0 +1,5 @@
1
+ from tdom import example_function
2
+
3
+
4
+ def test_example_function():
5
+ assert example_function() == 2