Metadata-Version: 2.4
Name: cou
Version: 0.1.5
Summary: A placeholder Python SDK package for BSO
Author-email: BSO Team <team@bso.example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourorg/bso
Project-URL: Documentation, https://github.com/yourorg/bso#readme
Project-URL: Repository, https://github.com/yourorg/bso
Project-URL: Issues, https://github.com/yourorg/bso/issues
Keywords: sdk,bso,placeholder
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Dynamic: license-file

# BSO SDK

A placeholder Python SDK package for BSO.

## Installation

```bash
pip install bso
```

## Usage

```python
from bso import hello_world, add

# Say hello
print(hello_world())

# Add numbers
result = add(2, 3)
print(result)  # Output: 5
```

## Development

To set up a development environment:

```bash
# Clone the repository
git clone https://github.com/yourorg/bso.git
cd bso

# Install in development mode with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Format code
black .

# Type check
mypy bso
```

## Building and Publishing

To build the package:

```bash
python -m build
```

To publish to PyPI:

```bash
# First, install build tools
pip install build twine

# Build the package
python -m build

# Upload to PyPI (test first with testpypi)
twine upload dist/*
```

## License

MIT License - see LICENSE file for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

