File size: 518 Bytes
139d3d1 db07765 139d3d1 f577d1f 139d3d1 | 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 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deceit_env"
version = "0.1.0"
description = "RL environment that trains LLMs to be honest under adversarial pressure"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0",
"openenv-core[core]>=0.2.1",
"pytest>=7.0",
"python-dotenv",
"openai>=1.0",
"fastapi",
"uvicorn",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|