Metadata-Version: 2.4
Name: precision-sdk
Version: 0.0.1
Summary: Namespace placeholder. The real Precision SDK is served only from your Precision instance's private package index, not PyPI.
Author: OpenMinds Resources
License: Proprietary
Project-URL: Homepage, https://www.openmindsresources.com
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# precision-sdk (namespace placeholder)

This PyPI project is a **placeholder**, not the real Precision SDK.

The real `precision-sdk` (the Precision platform's Python SDK + `precision`
CLI) is published **only on your Precision instance's private package index**,
never on public PyPI. This placeholder exists purely to **own the name on
public PyPI** so it cannot be registered by anyone else — a standard
[dependency-confusion](https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610)
protection. It carries no functionality; importing it raises `ImportError`
with the correct install command.

## Installing the real SDK

From your Precision instance (get the exact command under **Settings → API
Tokens** in the app):

```
uv pip install precision-sdk \
    --index-url https://<your-precision-host>/pypi/simple/ \
    --extra-index-url https://pypi.org/simple/
```

The private index is primary, so the real build is always what resolves;
public PyPI supplies only the transitive dependencies.
