File size: 1,785 Bytes
a574799 eb2d131 4058302 a574799 4058302 a574799 eb2d131 4058302 eb2d131 a574799 eb2d131 a574799 4058302 | 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 | # Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-incident-command-center"
version = "3.0.0"
description = "Enterprise-grade multi-agent Incident Command Center environment for OpenEnv."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "OpenEnv Hackathon Team" }]
keywords = [
"openenv",
"rl",
"llm",
"multi-agent",
"incident-response",
"sre",
"hackathon",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"openenv-core[core]>=0.2.2",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"pydantic>=2.7.0",
]
[project.optional-dependencies]
training = [
"transformers>=4.44.0",
"trl>=0.10.1",
"datasets>=2.20.0",
"accelerate>=0.33.0",
"peft>=0.12.0",
"matplotlib>=3.8.0",
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
server = "server.app:main"
run-baseline = "inference:main"
run-training = "train_trl:main"
[tool.setuptools]
include-package-data = true
py-modules = ["client", "models", "inference", "train_trl"]
[tool.setuptools.packages.find]
where = ["."]
include = ["server*"]
exclude = ["tests*", "artifacts*", "outputs*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
filterwarnings = [
"ignore::DeprecationWarning",
]
|