Metadata-Version: 2.1
Name: checkmarkandcross
Version: 0.1.1
Summary: checkmarks and crosses
Author: Eric Tröbs
Author-email: eric.troebs@tu-ilmenau.de
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Check Mark and Cross
```bash
python -m venv venv
source venv/bin/activate

pip install checkmarkandcross
```

```python
from checkmarkandcross import image

# check mark 512x512
image(True, 512)

# cross 16x16
image(False, 16)
```
