Metadata-Version: 2.4
Name: turtleshell
Version: 1.3.0
Summary: Convenience wrapper around turtle.Turtle and turtle.Screen
Author-email: Sam Mangan <sam.mangan2@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/SamMangan/turtleshell
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: bumpver; extra == "dev"
Requires-Dist: pytest; extra == "dev"

# TurtleShell

Convenience wrapper around Python turtle standard library.

## Development
Do all this in a virtual environment, e.g.
```
python3 -m venv venv
./venv/bin/activate
```

Test changes:
```
pip install pytest
pytest
```

Push changes.

Update package version:
```
pip install bumpver
bumpver update --minor
```

Build and check package with twine:
```
pip install build twine
python -m build
twine check dist/*
```

Upload to Test PyPI, install, and test:
```
twine upload -r testpypi dist/*
pip install -i https://test.pypi.org/simple turtleshell
```

Upload to PyPI:
```
twine upload dist/*
```
