CoolFace
Apppublic

coderbug/micro_swe_gym

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml48 linesDownload Raw Back to root
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-micro_swe_gym"13version = "0.1.0"14description = "Micro Swe Gym environment for OpenEnv"15requires-python = ">=3.10"16dependencies = [17    # Core OpenEnv runtime (provides FastAPI server + HTTP client types)18    # install from github19    # "openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",20    "openenv-core[core]==0.2.3",21    # Environment-specific dependencies22    # Add all dependencies needed for your environment here23    # Examples:24    # "numpy>=1.19.0",25    # "torch>=2.0.0",26    # "gymnasium>=0.29.0",27    # "openspiel>=1.0.0",28    # "smolagents>=1.22.0,<2",29    "openai>=2.7.2,<3",30    "requests>=2.32.2",31]32 33[project.optional-dependencies]34dev = [35    "pytest>=8.0.0",36    "pytest-cov>=4.0.0",37]38 39[project.scripts]40# Server entry point - enables running via: uv run --project . server41# or: python -m micro_swe_gym.server.app42server = "micro_swe_gym.server.app:main"43 44[tool.setuptools]45include-package-data = true46packages = ["micro_swe_gym", "micro_swe_gym.server"]47package-dir = { "micro_swe_gym" = ".", "micro_swe_gym.server" = "server" }48