File size: 796 Bytes
250ab26
35ea9cd
250ab26
 
 
35ea9cd
250ab26
35ea9cd
 
250ab26
 
35ea9cd
026e80b
35ea9cd
 
 
 
 
 
250ab26
 
35ea9cd
 
 
250ab26
 
 
 
 
 
 
35ea9cd
 
 
 
 
 
 
 
 
ca37eed
 
 
 
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "incident-triage-env"
version = "0.1.0"
description = "FastAPI incident triage environment for production alert classification."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "fastapi",
    "httpx>=0.27.0",
    "uvicorn",
    "pydantic",
    "openai",
    "requests",
    "python-dotenv",
    "openenv-core>=0.2.0",
]

[project.scripts]
server = "server.app:main"

[project.optional-dependencies]
dev = [
    "pytest>=8.0.0",
    "pytest-cov>=4.0.0",
]

[tool.setuptools]
py-modules = [
    "app",
    "client",
    "environment",
    "graders",
    "incidents",
    "inference",
    "models",
]

[tool.setuptools.packages.find]
where = ["."]
include = ["server*"]