Metadata-Version: 2.4
Name: miniworlds-turtle
Version: 0.1.0
Summary: A turtle-compatible API implemented on top of miniworlds
Author: Andreas Siebel
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Education
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: miniworlds
Dynamic: license-file

# miniworlds_turtle

`miniworlds_turtle` provides a Python `turtle` compatible API implemented on
top of `miniworlds`.

```python
import miniworlds_turtle as turtle

turtle.forward(100)
turtle.left(90)
turtle.forward(100)
turtle.done()
```

The package is designed to become an independent repository and PyPI package.
