Metadata-Version: 2.4
Name: cyborgdb-lite
Version: 0.13.0
Summary: [DEPRECATED] This package has been merged into cyborgdb-core. Please use cyborgdb-core instead.
Author: Cyborg Inc.
License: Proprietary
Project-URL: Homepage, https://www.cyborg.co
Project-URL: Documentation, https://docs.cyborg.co
Project-URL: Replacement Package, https://pypi.org/project/cyborgdb-core/
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: cyborgdb-core>=0.13.0
Provides-Extra: langchain
Requires-Dist: cyborgdb-core[langchain]>=0.13.0; extra == "langchain"
Provides-Extra: embeddings
Requires-Dist: cyborgdb-core[embeddings]>=0.13.0; extra == "embeddings"
Provides-Extra: all
Requires-Dist: cyborgdb-core[all]>=0.13.0; extra == "all"

# ⚠️ DEPRECATED: CyborgDB Lite

**This package has been deprecated and merged into [`cyborgdb-core`](https://pypi.org/project/cyborgdb-core/).**

## Migration Guide

Please update your dependencies:

```bash
# Old installation
pip uninstall cyborgdb-lite
pip install cyborgdb-core
```

And update your imports:

```python
# Old import
import cyborgdb_lite as cyborgdb

# New import
import cyborgdb_core as cyborgdb
```

All functionality from `cyborgdb-lite` is available in `cyborgdb-core` with the same API.

## Why the Change?

We've consolidated our Python packages to simplify distribution and maintenance. The `cyborgdb-core` package now includes all functionality previously in `cyborgdb-lite`, along with additional features and improvements.

## Automatic Migration

For backward compatibility, installing `cyborgdb-lite` version 0.13.0+ will automatically install `cyborgdb-core` as a dependency. However, we strongly recommend updating your code to import from `cyborgdb-core` directly.

## Support

For questions or issues:

- [Documentation](https://docs.cyborg.co)
- [Contact Us](https://www.cyborg.co/contact)
