Metadata-Version: 2.4
Name: reducto
Version: 0.22.0
Summary: Alias package — installs the official reductoai SDK. Prefer `pip install reductoai`.
Author-email: Reducto <dev-feedback@reductoai.com>
Project-URL: Homepage, https://github.com/reductoai/reducto-python-sdk
Project-URL: Repository, https://github.com/reductoai/reducto-python-sdk
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
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
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: reductoai==0.22.0

# reducto (PyPI alias)

This directory builds the `reducto` package on PyPI, which is an alias for [`reductoai`](https://pypi.org/project/reductoai/) — the official Reducto Python SDK.

`pip install reducto` installs `reductoai` as a dependency. The import name is `reducto` either way:

```python
import reducto
```

## Prefer installing reductoai directly

```
pip install reductoai
```

The `reducto` alias exists for discoverability; new projects should depend on `reductoai` explicitly.

## How this builds

This directory is published by `.github/workflows/publish-shim-pypi.yml`, which runs after the main `Publish PyPI` workflow succeeds. The workflow reads the canonical version from `src/reducto/_version.py`, substitutes `VERSION_PLACEHOLDER` in `pyproject.toml`, and publishes. The shim is always pinned to the exact `reductoai` version from the same release.

`pyproject.toml` contains `VERSION_PLACEHOLDER` on disk; it is not installable locally without CI substitution (and there's no reason to — use the main package).
