Metadata-Version: 2.4
Name: html2css
Version: 1.0.2
Summary: A simple CLI tool to generate CSS skeleton from HTML
Home-page: https://github.com/yourusername/html2css
Author: Your Name
Author-email: your@email.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# ðŸ›  html2css

A simple Python CLI tool that automatically generates a CSS skeleton (`style.css`) from an HTML file.  
No need to manually type selectors â€” just run a command and let it do the work for you.

## update(v1.0.1)
    -nth-child selector support: Now correctly applies :nth-child(n) to repeated HTML tags that do not have unique id or class attributes.
    -Handles repeated ids and classes gracefully with appropriate structural nesting.
    -Introduced ^= (starts-with) selector handling for dynamic or pattern-based attribute detection.
    
## ðŸš€ Features

- Detects HTML tags, IDs, and class names
- Outputs a starter `style.css` with all selectors structured
- Includes responsive media queries
- Works globally via the `html2css` command


## ðŸ“¦ Installation (after publishing to PyPI)

```bash
pip install --upgrade html2css
