Metadata-Version: 2.5
Name: dropbear
Version: 0.1.0a26
Summary: Renamed to dreamscale. Installs dreamscale and keeps `import dropbear` and the `dropbear` command working.
Project-URL: Homepage, https://app.dreamscalelabs.com
Project-URL: Documentation, https://docs.dreamscalelabs.com
Author: Dreamscale Labs
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: inference,physical-ai,robotics,vla
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: <3.15,>=3.11
Requires-Dist: dreamscale<0.2,>=0.1.0a26
Provides-Extra: cameras
Requires-Dist: dreamscale[cameras]<0.2,>=0.1.0a26; extra == 'cameras'
Provides-Extra: dreamzero
Requires-Dist: dreamscale[dreamzero]<0.2,>=0.1.0a26; extra == 'dreamzero'
Provides-Extra: realsense
Requires-Dist: dreamscale[realsense]<0.2,>=0.1.0a26; extra == 'realsense'
Provides-Extra: sim
Requires-Dist: dreamscale[sim]<0.2,>=0.1.0a26; extra == 'sim'
Provides-Extra: so101
Requires-Dist: dreamscale[so101]<0.2,>=0.1.0a26; extra == 'so101'
Provides-Extra: trace
Requires-Dist: dreamscale[trace]<0.2,>=0.1.0a26; extra == 'trace'
Description-Content-Type: text/markdown

# dropbear (renamed to dreamscale)

The Dropbear Python SDK is now [`dreamscale`](https://pypi.org/project/dreamscale/).
This package installs `dreamscale` and keeps existing code and commands working:

- `import dropbear` and `from dropbear.x import y` resolve to the same modules as
  `dreamscale`, with one `DeprecationWarning`;
- the `dropbear` command prints a one-line notice and runs `dreamscale`;
- extras such as `dropbear[so101]` install the matching `dreamscale` extra.

Settings in `~/.dropbear` and `~/.config/dropbear/yam.json` are used in place
until `~/.dreamscale` exists. `DROPBEAR_HOME` and `DROPBEAR_API_KEY` are still
read after `DREAMSCALE_HOME` and `DREAMSCALE_API_KEY`.

To switch, replace the dependency and the import:

```bash
uv add "dreamscale==0.1.0a26"
```

```python
import dreamscale
```
