Metadata-Version: 2.4
Name: saki-io
Version: 0.0.1
Summary: Placeholder for saki.io — reserve package name on PyPI and Test-PyPI.
Author: saki.io
License: MIT
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"

# saki-io

Placeholder package to reserve the name on PyPI and Test-PyPI. See the saki.io project for the actual application.

## Development (uv)

```bash
# Create venv and install deps (including build, twine)
uv sync

# Build sdist and wheel
uv run python -m build

# Upload to Test-PyPI (use __token__ / pypi-... as credentials)
uv run twine upload --repository testpypi dist/*

# Upload to PyPI
uv run twine upload dist/*
```
