Metadata-Version: 2.1
Name: vpype-singlestroke
Version: 0.1.0
Summary: singlestroke
Home-page: https://github.com/d-n-l-lab/singlestroke
Author: Dominik Lang
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Multimedia :: Graphics
Classifier: Environment :: Plugins
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: vpype<2.0,>=1.9
Requires-Dist: click
Requires-Dist: numpy

# singlestroke

[`vpype`](https://github.com/abey79/vpype) plug-in to [_to be completed_]


## Examples

_to be completed_


## Installation

See the [installation instructions](https://vpype.readthedocs.io/en/latest/install.html) for information on how
to install `vpype`.

If *vpype* was installed using pipx, use the following command:

```bash
$ pipx inject vpype singlestroke
```

If *vpype* was installed using pip in a virtual environment, activate the virtual environment and use the following command:

```bash
$ pip install singlestroke
```

Check that your install is successful:

```
$ vpype singlestroke --help
[...]
```

## Documentation

The complete plug-in documentation is available directly in the CLI help:

```bash
$ vpype singlestroke --help
```


## Development setup

Here is how to clone the project for development:

```bash
$ git clone https://github.com/d-n-l-lab/singlestroke.git
$ cd singlestroke
```

Create a virtual environment:

```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install --upgrade pip
```

Install `singlestroke` and its dependencies (including `vpype`):

```bash
$ pip install -e .
$ pip install -r dev-dependencies.txt
```


## License

See the [LICENSE](LICENSE) file for details.


