Metadata-Version: 2.4
Name: tdom
Version: 0.0.1
Summary: Placeholder for future library on PyPI using PEP 750 t-strings.
Author: t-strings
License-Expression: MIT
Project-URL: Homepage, https://github.com/t-strings/tdom
Project-URL: Changelog, https://github.com/t-strings/tdom/releases
Project-URL: Issues, https://github.com/t-strings/tdom/issues
Project-URL: CI, https://github.com/t-strings/tdom/actions
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# tdom

A 🔥 t-string (aka PEP 750) DOM implementation for upcoming Python 3.14.

[![PyPI](https://img.shields.io/pypi/v/tdom.svg)](https://pypi.org/project/tdom/)
[![Tests](https://github.com/t-strings/tdom/actions/workflows/test.yml/badge.svg)](https://github.com/t-strings/tdom/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/t-strings/tdom?include_prereleases&label=changelog)](https://github.com/t-strings/tdom/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/t-strings/tdom/blob/main/LICENSE)

Placeholder for future library on PyPI using PEP 750 t-strings.

## Installation

Install this library using `pip`:

```bash
pip install tdom
```

## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

```bash
cd tdom
python -m venv venv
source venv/bin/activate
```

Now install the dependencies and test dependencies:

```bash
python -m pip install -e '.[test]'
```

To run the tests:

```bash
python -m pytest
```
