yashu2000/TemporalBenchEnv
0
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>=61.0", "wheel"]9build-backend = "setuptools.build_meta"10 11[project]12name = "openenv-TemporalBenchEnv"13version = "0.1.0"14description = "TemporalBench MCQ environment for OpenEnv"15requires-python = ">=3.10"16dependencies = [17 "openenv-core[core]>=0.2.0",18 "numpy>=1.24.0",19 "pydantic>=2.0.0",20]21 22[project.optional-dependencies]23dev = [24 "pytest>=8.0.0",25 "pytest-cov>=4.0.0",26]27 28[project.scripts]29server = "server.app:main"30 31[tool.setuptools]32include-package-data = true33py-modules = ["client", "models"]34 35[tool.setuptools.packages.find]36where = ["."]37include = ["env*", "data*", "server*"]38 39[tool.pytest.ini_options]40pythonpath = ["."]41testpaths = ["tests"]42 