CoolFace
Apppublic

prashasti12/AI-debugging-agent

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
pyproject.toml74 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=61.0", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "debugops"7version = "1.0.0"8description = "DebugOps - AI Incident Response Environment for OpenEnv"9readme = "README.md"10requires-python = ">=3.11"11license = {text = "MIT"}12 13authors = [14    {name = "Prashasti Poojary", email = "your.email@example.com"}15]16 17keywords = [18    "reinforcement-learning",19    "incident-response",20    "sre",21    "devops",22    "openenv"23]24 25classifiers = [26    "Development Status :: 4 - Beta",27    "Intended Audience :: Developers",28    "Intended Audience :: Science/Research",29    "License :: OSI Approved :: MIT License",30    "Programming Language :: Python :: 3",31    "Programming Language :: Python :: 3.11",32    "Programming Language :: Python :: 3.12",33    "Topic :: Scientific/Engineering :: Artificial Intelligence",34]35 36dependencies = [37    "fastapi>=0.110.0",38    "uvicorn>=0.29.0",39    "pydantic>=2.6.4",40    "openai>=1.0.0",41    "openenv-core>=0.2.0",42    "pyyaml>=6.0",43]44 45[project.optional-dependencies]46dev = [47    "pytest>=7.0",48    "black>=23.0",49    "flake8>=6.0,<7.2.0",50    "ruff>=0.1.0",51]52 53[project.urls]54Homepage = "https://github.com/pr1397/AI-Incident-Response-Environment"55Repository = "https://github.com/pr1397/AI-Incident-Response-Environment"56Issues = "https://github.com/pr1397/AI-Incident-Response-Environment/issues"57"HuggingFace Space" = "https://huggingface.co/spaces/prashasti12/AI-debugging-agent"58 59[project.scripts]60server = "server.app:main"61 62[tool.setuptools]63packages = ["env", "tasks", "agent", "grader", "server"]64 65[tool.setuptools.package-data]66"*" = ["*.yaml", "*.yml"]67 68[tool.ruff]69line-length = 10070target-version = "py311"71 72[tool.black]73line-length = 10074target-version = ["py311", "py312"]