Metadata-Version: 2.4
Name: justmyresource-lucide
Version: 0.469.0.post1
Summary: JustMyResource pack: Lucide 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 ISC
License-File: LICENSE
License-File: LICENSES/LUCIDE-LICENSE
Keywords: icons,justmyresource,lucide,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. -->

# Lucide

Lucide icon library — 1500+ minimalist SVG icons

## Installation

```bash
pip install justmyresource-lucide
```

## Usage

```python
from justmyresource import ResourceRegistry

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

## Prefixes

This pack can be accessed using the following prefixes:

- `lucide` (primary)

- `luc` (alias)



## Variants


This pack has a single variant. Icons can be accessed directly:

```python
content = registry.get_resource("lucide:icon-name")
```


## License

- **Upstream License**: ISC
- **Copyright**: Copyright (c) Lucide Contributors
- **Upstream Source**: https://lucide.dev

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

## Upstream

This pack bundles icons from:
- **Source**: https://lucide.dev
- **Version**: 0.469.0

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

