Metadata-Version: 2.4
Name: agenticml-py
Version: 0.0.1
Summary: Python SDK for the AgenticML platform. Installs as `agenticml-py`, imports as `agenticml`.
Author-email: Gaurav Singh <gaurav.singh@agenticml.xyz>
License: MIT
Project-URL: Homepage, https://agenticml.xyz
Project-URL: Source, https://github.com/agenticML/agenticml
Project-URL: Issues, https://github.com/agenticML/agenticml/issues
Keywords: mlops,experiment-tracking,machine-learning,agentic
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.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31
Provides-Extra: dev
Requires-Dist: pytest>=7; extra == "dev"
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"
Dynamic: license-file

# agenticml-py

Python SDK for the [agenticml](https://agenticml.xyz) platform.

> ⚠️ **Pre-alpha.** The public API is not yet stable. Pin exact versions if you
> depend on this.

> 📦 **Note on naming**: install as `agenticml-py`, import as `agenticml`.

## Install

```bash
pip install agenticml-py
```

## Usage

```python
import agenticml

client = agenticml.Client(api_key="...")
```

## Development

```bash
git clone https://github.com/agenticML/agenticml.git
cd agenticml
pip install -e ".[dev]"
pytest
```

## Releasing

Releases are published to PyPI via GitHub Actions on tags matching `v*`:

```bash
# bump version in pyproject.toml and src/agenticml/__init__.py
git commit -am "release: v0.0.2"
git tag v0.0.2
git push --tags
```

## License

MIT — see [LICENSE](LICENSE).
