File size: 2,151 Bytes
bc35a94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "sysadmin-env"
version = "0.3.0"
description = "OpenEnv-style multi-app HPC SRE environment for enterprise workflow reinforcement learning"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
    { name = "sysadmin env contributors" },
]
keywords = [
    "openenv",
    "reinforcement-learning",
    "hpc",
    "sre",
    "slurm",
    "grpo",
    "qwen",
    "trl",
]
classifiers = [
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
    "Intended Audience :: Science/Research",
    "Operating System :: POSIX :: Linux",
    "Operating System :: MacOS :: MacOS X",
    "License :: OSI Approved :: Apache Software License",
]
dependencies = [
    "fastapi>=0.136.0",
    "uvicorn>=0.45.0",
    "pydantic>=2.13.0",
    "websockets>=16.0",
    "httpx>=0.28.1",
    "openenv-core>=0.2.3",
    "openai>=2.32.0",
    "gymnasium>=1.2.3",
    "pexpect>=4.9.0",
    "matplotlib>=3.9.0",
    "numpy>=2.0.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=9.0.0",
    "ruff>=0.8.0",
]
train = [
    "torch>=2.6.0",
    "transformers>=4.50.0",
    "trl>=0.12.0",
    "datasets>=3.0.0",
    "accelerate>=1.0.0",
    "peft>=0.13.0",
    "bitsandbytes>=0.44.0",
    "tensorboard>=2.18.0",
    "huggingface_hub>=0.26.0",
]

[project.urls]
Homepage = "https://github.com/your-user/low-taper-fade-openenv-scaler"
Repository = "https://github.com/your-user/low-taper-fade-openenv-scaler"

[project.scripts]
server = "server.app:main"

[tool.setuptools]
py-modules = [
    "client",
    "inference",
    "hpc_gym",
    "models",
]

[tool.setuptools.packages.find]
where = ["."]
include = [
    "sysadmin_env*",
    "server*",
    "training*",
    "tools*",
    "eval*",
    "bench*",
]
exclude = [
    "tests*",
    ".venv*",
    "runs*",
    "outputs*",
    "assets*",
    "docs*",
    "scripts*",
    "sysadmin_env.egg-info*",
]