Metadata-Version: 2.1
Name: agentrun
Version: 0.1a0
Summary: The easiest way to run AI or user generated python code safely in a docker container
Author-email: Jonathan Adly <gadly0123@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/jonathan-adly/agentrun
Project-URL: Changelog, https://github.com/jonathan-adly/agentrun/releases
Project-URL: Issues, https://github.com/jonathan-adly/agentrun/issues
Project-URL: CI, https://github.com/jonathan-adly/agentrun/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: docker
Requires-Dist: RestrictedPython
Provides-Extra: test
Requires-Dist: pytest; extra == "test"

# agentrun

[![PyPI](https://img.shields.io/pypi/v/agentrun.svg)](https://pypi.org/project/agentrun/)
[![Tests](https://github.com/jonathan-adly/agentrun/actions/workflows/test.yml/badge.svg)](https://github.com/jonathan-adly/agentrun/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/jonathan-adly/agentrun?include_prereleases&label=changelog)](https://github.com/jonathan-adly/agentrun/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/jonathan-adly/agentrun/blob/main/LICENSE)

The easiest way to run AI or user generated python code safely in a docker container

## Installation

Install this library using `pip`:
```bash
pip install agentrun
```
## Usage

Coming soon...

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd agentrun
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```


## TO DO Before Beta
1. Mypy
2. Black
3. Documentation
