Metadata-Version: 2.4
Name: turtleshell
Version: 1.4.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
1. Do all this in a virtual environment, e.g.:
    ```
    python3 -m venv venv
    source /venv/bin/activate
    pip install pytest bumpver build twine
    ```

2. Test:
    ```
    pytest
    ```

3. Push.

4. Update package version:
    ```
    bumpver update --minor
    ```

5. Push.

6. Build/check package:
    ```
    python -m build; twine check dist/*
    ```

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

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