Metadata-Version: 2.1
Name: svgsprite
Version: 0.1.1
Summary: Regroup your SVG files in a single sprite
Home-page: https://github.com/sephii/svgsprite
Author: Sylvain Fankhauser
Author-email: sephi@fhtagn.top
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# svgsprite

This is a simple script (no external dependencies) to regroup all the SVG files
from a directory into a single sprite.

## Installation

``` sh
pip install svgsprite
```

## Usage

``` sh
svgsprite --src path/to/dir/with/svg/files --dest path/to/sprite/to/create
```

You can then refer to your icons with tags like this:

```html
<svg>
  <use xlink:href="sprite.svg#my-svg-file"></use>
</svg>
```


