mlops-openenv / server /pyproject.toml
trretretret's picture
Add uv.lock, pyproject.toml, server directory
6a71058
raw
history blame contribute delete
901 Bytes
[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 = "MLOps Team"}]
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",
"dotenv>=1.0.0",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "uvicorn:app --host 0.0.0.0 --port 7860"
[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"]