Spaces:
Runtime error
Runtime error
| [build-system] | |
| requires = ["setuptools>=45", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "openenv-dipg-safety" | |
| version = "0.1.0" | |
| description = "DIPG Safety Environment for OpenEnv" | |
| readme = "README.md" | |
| requires-python = ">=3.11" | |
| dependencies = [ | |
| "openenv-core>=0.1.0", # The core dependency | |
| "fastapi==0.104.0", | |
| "uvicorn[standard]==0.24.0", | |
| "requests==2.25.0", | |
| "wsproto==1.0.0", | |
| "gunicorn==22.0.0", | |
| "datasets", | |
| "starlette", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.0.0", | |
| "pytest-cov>=4.0.0", | |
| "ipykernel>=6.29.5", | |
| ] | |
| # This creates a command 'dipg-server' you can run from the terminal | |
| [project.scripts] | |
| dipg-server = "server.app:main" | |
| [tool.setuptools] | |
| packages = ["server", "tests"] # Includes your server and test modules | |
| py-modules = ["client", "models"] # Includes the files at the root | |