Metadata-Version: 2.4
Name: python-bap
Version: 1.0.0
Summary: 
Author: Dave Martinez
Author-email: 34991082+dkm-coder@users.noreply.github.com
Requires-Python: >=3.8
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: requests (>=2.32.5,<3.0.0)
Requires-Dist: typer (>=0.21.0,<0.22.0)
Requires-Dist: urllib3 (<2)
Description-Content-Type: text/markdown

# python-bap

This project serves as an example on how to **build and publish** a Python package to PyPI.

## Folder structure

The folder structure has been created with [Poetry](https://python-poetry.org/) and it looks like this:

```
python-bap/
  dist/               <- Distributables
  src/
    python_bap/       <- Code for the project
  tests/              <- Tests for the application
.gitignore            <- Patterns to be ignored by git
poetry.lock           <- Dependency lock file
pyproject.toml        <- Config file for the project
README.md             <- This file
```

