Spaces:
Sleeping
Sleeping
File size: 922 Bytes
c07115c 1e82f9d c07115c 1e82f9d c07115c | 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 | [project]
name = "mlops-openenv"
version = "1.0.0"
description = "MLOps Pipeline Debugger - OpenEnv-compatible RL environment for ML training debugging"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "Code Clashers"}]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.9.0",
"httpx>=0.27.0",
"openai>=1.51.0",
"websockets>=13.0",
"numpy>=1.26.0",
"python-multipart>=0.0.12",
"python-dotenv>=1.0.0",
"openenv-core>=0.2.0",
]
[project.scripts]
mlops-server = "uvicorn:main"
mlops-infer = "inference:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.6.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"] |