Spaces:
Sleeping
Sleeping
File size: 598 Bytes
7e24fa5 | 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 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cace-env"
version = "0.2.0"
description = "Cultural Context Arbitration Environment — OpenEnv RL environment"
requires-python = ">=3.11"
dependencies = [
"openenv-core>=0.1.0",
"fastapi>=0.111.0",
"uvicorn>=0.30.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"groq>=0.9.0",
"openai>=1.0.0",
]
[project.optional-dependencies]
network = [
"networkx>=3.3",
]
all = [
"networkx>=3.3",
]
[tool.hatch.build.targets.wheel]
packages = ["cace_env"]
|