| [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"] | |