Spaces:
Sleeping
Sleeping
File size: 649 Bytes
76a84aa | 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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "negotiation-env"
version = "1.0.0"
description = "Strategic Negotiation Simulation — OpenEnv environment where AI agents learn to negotiate under uncertainty"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "Team MEta_ai"},
]
dependencies = [
"openenv-core",
"openai>=1.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
server = "server.app:main"
|