BSO SDK
A placeholder Python SDK package for BSO.
Installation
pip install bso
Usage
from bso import hello_world, add
print(hello_world())
result = add(2, 3)
print(result)
Development
To set up a development environment:
git clone https://github.com/yourorg/bso.git
cd bso
pip install -e ".[dev]"
pytest
black .
mypy bso
Building and Publishing
To build the package:
python -m build
To publish to PyPI:
pip install build twine
python -m build
twine upload dist/*
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.