Metadata-Version: 2.1
Name: pypy-geoff
Version: 0.1.3
Summary: 
Author: Geoff Dutton
Author-email: g.dutton@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# Example Python Package

Following this article: https://mathspp.com/blog/how-to-create-a-python-package-in-2022

## Notes

**ZSH**
In zsh, it looks like you need to quote poetry packages:

```
poetry add -D scriv[toml]
$ zsh: no matches found: scriv[toml]
```

```
poetry add -D "scriv[toml]"
$ ... installed ...
```

