Metadata-Version: 2.4
Name: justmyresource-phosphor
Version: 2.0.8.post1
Summary: JustMyResource pack: Phosphor 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
License-File: LICENSE
License-File: LICENSES/PHOSPHOR-LICENSE
Keywords: icons,justmyresource,phosphor,resources,svg
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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. -->

# Phosphor

Phosphor Icons — 1200+ flexible weight system icons

## Installation

```bash
pip install justmyresource-phosphor
```

## Usage

```python
from justmyresource import ResourceRegistry

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

## Prefixes

This pack can be accessed using the following prefixes:

- `phosphor` (primary)

- `ph` (alias)



## Variants


This pack includes the following variants:

- `thin`

- `light`

- `regular` (default)

- `bold`

- `fill`

- `duotone`


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

```python
# Access default variant (regular)
content = registry.get_resource("phosphor:icon-name")

# Access specific variant
content = registry.get_resource("phosphor:thin/icon-name")
```


## License

- **Upstream License**: MIT
- **Copyright**: Copyright (c) Phosphor Icons
- **Upstream Source**: https://github.com/phosphor-icons/core

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

## Upstream

This pack bundles icons from:
- **Source**: https://github.com/phosphor-icons/core
- **Version**: v2.0.8

## 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.

