openenv / pyproject.toml
jeromerichard's picture
Fix: add server/app.py, uv.lock, project.scripts entry point
7cf2ffd
raw
history blame contribute delete
417 Bytes
[project]
name = "trust-safety-env"
version = "1.0.0"
description = "Trust & Safety RL Environment built on OpenEnv"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.0.0",
"requests>=2.31.0",
"openenv-core>=0.2.2",
]
[project.scripts]
server = "server.app:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"