Metadata-Version: 2.4
Name: centori
Version: 0.1.0
Summary: Official Python package for Centori SDKs, runtime clients, and developer tooling.
Author: Centori
License: Copyright (c) 2026 Centori.
        
        All rights reserved.
        
        This software and associated documentation files are proprietary to Centori.
        No permission is granted to use, copy, modify, distribute, sublicense, or sell
        copies of this software without prior written permission from Centori.
Project-URL: Homepage, https://centori.ai
Project-URL: Repository, https://github.com/centori-ai/centori-python
Project-URL: Issues, https://github.com/centori-ai/centori-python/issues
Keywords: centori,sdk,runtime,agents,automation
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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 :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Centori

Official Python package for Centori.

This is an early package for future Centori Python SDK, CLI, runtime client, and integration tooling.

## Install

```bash
pip install centori
```

## Usage

```python
import centori

print(centori.__version__)
print(centori.info())
```

## Development

Create a virtual environment:

```bash
python -m venv .venv
source .venv/bin/activate
```

Install build tools:

```bash
python -m pip install --upgrade pip build twine pytest
```

Run tests:

```bash
python -m pytest
```

Build:

```bash
python -m build
```

Check distribution files:

```bash
python -m twine check dist/*
```

Publish to TestPyPI first:

```bash
python -m twine upload --repository testpypi dist/*
```

Publish to PyPI:

```bash
python -m twine upload dist/*
```

Use a PyPI API token instead of your account password when Twine asks for credentials.
For username, enter `__token__`. For password, paste the API token.
