Metadata-Version: 2.1
Name: inkscape_svg_layer_extractor
Version: 0.0.2
Summary: Small script to extract layers from inscape svg
Home-page: https://github.com/twyleg
Author: Torsten Wylegala
Author-email: mail@twyleg.de
License: GPL 3.0
Keywords: inkscape svg layer extractor
Platform: UNKNOWN
License-File: LICENSE

# Inkscape svg layer extractor

Small script to extract layers from inscape svg

## Setup environment

To setup a development environment and install all requirements run the following commands (example for windows):

    python -m venv venv
    venv/Scripts/activate
    python -m pip install -r requirements.txt

## Build and deploy

### Build

    python setup.py sdist bdist_wheel

### Deploy

TestPyPI:

    python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
    
PyPi:

    python -m twine upload dist/*

