File size: 657 Bytes
d765986
 
 
 
 
 
 
 
 
 
 
 
 
a55c81d
8b39a8b
 
d765986
 
 
 
755a07d
 
d765986
ca23d0f
a55c81d
 
 
ca23d0f
 
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "agentdebugger-env"
version = "1.0.0"
description = "An OpenEnv-compliant debugging environment for AI agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "fastapi==0.110.0",
    "uvicorn==0.29.0",
    "pydantic>=2.9.0",
    "openai==2.7.2",
    "openenv-core>=0.2.0",
    "requests==2.31.0",
    "python-dotenv==1.0.1",
    "pytest==8.1.0",
    "httpx==0.27.0",
    "RestrictedPython==7.0",
    "torch>=2.11.0",
]

[tool.setuptools.packages.find]
include = ["env*", "server*"]

[project.scripts]
server = "server.app:main"