ignatius-nobel/meta_hackathon
1
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7[build-system]8requires = ["setuptools>=45", "wheel"]9build-backend = "setuptools.build_meta"10 11[project]12name = "openenv-openspiel-env"13version = "0.1.0"14description = "OpenSpiel Environment for OpenEnv - integration with DeepMind's game research framework"15requires-python = ">=3.10"16dependencies = [17 # Core OpenEnv dependencies (required for server functionality)18 "openenv-core[core]>=0.2.2",19 "fastapi>=0.115.0",20 "pydantic>=2.0.0",21 "uvicorn>=0.24.0",22 "requests>=2.31.0",23 # Note: OpenSpiel (pyspiel) is built from source in the Docker image24 # and is not available as a pip package. The Docker build compiles it25 # from https://github.com/google-deepmind/open_spiel26]27 28[project.optional-dependencies]29dev = [30 "pytest>=8.0.0",31 "pytest-cov>=4.0.0",32]33 34[project.scripts]35# Server entry point36server = "openspiel_env.server.app:main"37 38[tool.setuptools]39include-package-data = true40packages = ["openspiel_env", "openspiel_env.server"]41package-dir = { "openspiel_env" = ".", "openspiel_env.server" = "server" }42 