CoolFace
Apppublic

akkki012/sysadmin_env

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
pyproject.toml25 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68.0", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "sysadmin-env"7version = "0.1.0"8description = "OpenEnv RL environment: fix a broken Linux server with bash commands"9requires-python = ">=3.10"10license = {text = "MIT"}11 12dependencies = [13    "openenv-core",14    "openai>=1.0",15]16 17[project.optional-dependencies]18dev = [19    "pytest",20    "ruff",21]22 23[tool.setuptools.packages.find]24include = ["sysadmin_env*"]25