Spaces:
Sleeping
Sleeping
| [build-system] | |
| requires = ["setuptools>=68.0", "wheel"] | |
| build-backend = "setuptools.backends._legacy:_Backend" | |
| [project] | |
| name = "content-moderation-queue" | |
| version = "1.0.0" | |
| description = "A real-world OpenEnv RL environment for AI content moderation" | |
| requires-python = ">=3.10" | |
| license = {text = "MIT"} | |
| dependencies = [ | |
| "fastapi==0.111.0", | |
| "uvicorn[standard]==0.29.0", | |
| "pydantic==2.7.1", | |
| "openai>=1.52.0", | |
| "requests==2.32.2", | |
| "python-multipart==0.0.9", | |
| "certifi>=2024.2.2", | |
| "httpx>=0.27.0", | |
| "openenv-core>=0.2.0", | |
| ] | |
| [project.scripts] | |
| server = "uvicorn:main" | |
| [project.entry-points."openenv.envs"] | |
| content-moderation-queue = "server.app:app" | |
| [project.optional-dependencies] | |
| dev = ["pytest"] | |
| [tool.setuptools.packages.find] | |
| include = ["environment*"] | |