Ginnipahwa05/Meta-Pytorch
0
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "meta-pytorch"7version = "1.0.0"8description = "Distributed incident war-room OpenEnv simulator for SRE debugging and observability workflows."9readme = "README.md"10requires-python = ">=3.9"11license = { text = "MIT" }12authors = [13 { name = "Garima Pahwa" }14]15keywords = [16 "openenv",17 "sre",18 "devops",19 "observability",20 "incident-response",21 "simulation"22]23dependencies = [24 "openenv-core>=0.2.0",25 "fastapi==0.104.1",26 "uvicorn[standard]==0.24.0",27 "pydantic==2.5.0",28 "pydantic[email]==2.5.0",29 "openai==1.3.3",30 "numpy==1.24.3",31 "python-json-logger==2.0.7",32 "requests==2.31.0",33 "httpx==0.25.1",34 "python-dotenv==1.0.0",35 "PyYAML==6.0.1",36 "pytest==7.4.3",37 "pytest-asyncio==0.21.1"38]39 40[project.scripts]41server = "server.app:main"42 43[tool.setuptools]44py-modules = ["app", "environment", "graders", "inference", "models", "tasks"]45 46[tool.setuptools.packages.find]47include = ["server*"]48 