Metadata-Version: 2.4
Name: agent-genesis
Version: 0.0.1
Summary: Agent Genesis evaluation SDK.
Author: Zane
License: Apache License 2.0
Project-URL: Homepage, https://pypi.org/project/agent-genesis/
Project-URL: Repository, https://github.com/
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pydantic>=2
Requires-Dist: python-dotenv
Requires-Dist: grpcio
Requires-Dist: protobuf
Requires-Dist: ppio-sandbox
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: grpcio-tools; extra == "dev"

# agent-genesis

`agent-genesis` is an evaluation SDK package for dual-sandbox execution, protocol routing, and submission orchestration.

## Install

```bash
pip install agent-genesis
```

## Build

```bash
python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
```

## TestPyPI First (Recommended)

Upload to TestPyPI:

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

Install from TestPyPI:

```bash
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ agent-genesis
```

## Publish to PyPI

After TestPyPI verification:

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

## License

Apache License 2.0
