Metadata-Version: 2.4
Name: justmyresource-font-awesome
Version: 6.7.2.post1
Summary: JustMyResource pack: Font Awesome Free icons
Project-URL: Homepage, https://github.com/kws/justmyresource-icons
Project-URL: Repository, https://github.com/kws/justmyresource-icons
Project-URL: Issues, https://github.com/kws/justmyresource-icons/issues
Author-email: Kaj Siebert <kaj@k-si.com>
License: MIT AND CC-BY-4.0
License-File: LICENSE
License-File: LICENSES/FONT-AWESOME-ATTRIBUTION
License-File: LICENSES/FONT-AWESOME-LICENSE
Keywords: font-awesome,icons,justmyresource,resources,svg
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: justmyresource<2.0.0,>=1.0.0
Description-Content-Type: text/markdown

<!-- This file is auto-generated from upstream.toml. Do not edit manually. -->

# Font Awesome

Font Awesome Free — 2000+ industry standard icons (solid, regular, brands)

## Installation

```bash
pip install justmyresource-font-awesome
```

## Usage

```python
from justmyresource import ResourceRegistry

registry = ResourceRegistry()
content = registry.get_resource("font-awesome:icon-name")
print(content.text)  # SVG content
```

## Prefixes

This pack can be accessed using the following prefixes:

- `font-awesome` (primary)

- `fa` (alias)



## Variants


This pack includes the following variants:

- `solid` (default)

- `regular`

- `brands`


To access a specific variant, use the format `font-awesome:variant/icon-name`:

```python
# Access default variant (solid)
content = registry.get_resource("font-awesome:icon-name")

# Access specific variant
content = registry.get_resource("font-awesome:solid/icon-name")
```


## License

- **Upstream License**: CC-BY-4.0
- **Copyright**: Copyright (c) Fonticons, Inc.
- **Upstream Source**: https://fontawesome.com

For full license details, see the [LICENSE](../LICENSE) file.

## Upstream

This pack bundles icons from:
- **Source**: https://fontawesome.com
- **Version**: 6.7.2

## Development

To build this pack from source:

```bash
# 1. Fetch upstream archive (downloads to cache/)
pack-tools fetch <pack-name>

# 2. Build icons.zip and manifest (processes from cache)
pack-tools build <pack-name>

# 3. Create distribution wheel
pack-tools dist <pack-name>
```

The cache persists across builds. To force a fresh download, delete the `cache/` directory.

