Metadata-Version: 2.4
Name: rusty_tags
Version: 0.2.1
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
Requires-Dist: jinja2>=3.1.6
Requires-Dist: mako>=1.3.10
Summary: High-performance HTML generation library with Rust-based Python extension
Keywords: html,web,performance,rust,template
Author: RustyTags Contributors
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/yourusername/rustyTags
Project-URL: Repository, https://github.com/yourusername/rustyTags
Project-URL: Issues, https://github.com/yourusername/rustyTags/issues

# RustyTags

A high-performance HTML generation library with Rust-based Python extension.

## Quick Start

```bash
# Install dependencies and build
pip install maturin
maturin develop

# Use in Python
from rusty_tags import Div, P, A
html = Div(P("Hello"), A("World", href="https://example.com"))
print(html)
```

## Features

- High-performance Rust core with Python bindings
- Compatible with existing Air library codebases
- Optimized HTML/SVG tag generation
- Backward compatibility layer included

## Build

```bash
maturin build --release
```
