Metadata-Version: 2.1
Name: appicongen
Version: 0.2.2
Summary: CLI tool for generating app icon sets for macOS, iOS and watchOS projects
Project-URL: Homepage, https://github.com/fwcd/appicongen
Project-URL: Repository, https://github.com/fwcd/appicongen
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow<11,>=10.4
Requires-Dist: numpy<3,>=2.0

# Appicongen

[![PyPI](https://img.shields.io/pypi/v/appicongen)](https://pypi.org/project/appicongen)
[![Typecheck](https://github.com/fwcd/appicongen/actions/workflows/typecheck.yml/badge.svg)](https://github.com/fwcd/appicongen/actions/workflows/typecheck.yml)

A small CLI tool for generating app icon sets for macOS, iOS and watchOS projects.

## Examples

```sh
# Generate AppIcon.appiconset from icon.png with iOS, macOS and watchOS icons
appicongen --all icon.png
```

```sh
# Generate MyIcon.appiconset from icon.png with only iOS icons
appicongen --ios -o MyIcon.appiconset icon.png
```

```sh
# Generate MyIcon.appiconset from icon.png with only macOS icons
# and automatically resize/mask the images to a rounded rectangle
# shape in the style of macOS Big Sur.
appicongen --macos --bigsurify -o MyIcon.appiconset icon.png
```
