-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
35 lines (29 loc) · 1.08 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "agentrun"
version = "0.2.5"
description = "The easiest way to run AI or user generated python code safely in a docker container"
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "Jonathan Adly", email = "[email protected]"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"docker", "RestrictedPython",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["agentrun*"]
exclude = ["agentrun-api*", "docs*", "examples*", "tests*", ".github*"]
[project.urls]
Homepage = "https://github.com/jonathan-adly/agentrun"
Changelog = "https://github.com/jonathan-adly/agentrun/releases"
Issues = "https://github.com/jonathan-adly/agentrun/issues"
CI = "https://github.com/jonathan-adly/agentrun/actions"
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-benchmark", "mypy", "mkdocs", "mkdocs-material", 'mkdocstrings[python]', "mkdocs-jupyter"]