Metadata-Version: 2.2
Name: generated-python-packaging-demo
Version: 0.0.0
Summary: A simple python package for illustration and educational purposes
Author-email: Achilleas Palaskos <my_email@example.com>
License: MIT
Keywords: one,two
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: importlib-metadata; python_version < "3.13"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Provides-Extra: static-code-qa
Requires-Dist: pre-commit; extra == "static-code-qa"
Provides-Extra: release
Requires-Dist: build; extra == "release"
Requires-Dist: twine; extra == "release"
Provides-Extra: dev
Requires-Dist: generated-python-packaging-demo[release,static-code-qa,test]; extra == "dev"

# generated-python-packaging-demo

## Quick start

```bash
pip install generated-python-packaging-demo
```

```python
from packaging_demo import ...
```

## Contributing

```bash
# clone the repo
git clone https://github.com/phitoduck/generated-python-packaging-demo.git

# install the dev dependencies
make install

# run the tests
make test
```
