-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 813 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-opsgauntlet"
version = "0.1.0"
description = "OpsGauntlet benchmark environment for safe release and incident response agents"
requires-python = ">=3.10"
dependencies = [
"openenv-core[core]>=0.2.3",
"fastapi>=0.135.0",
"uvicorn>=0.43.0",
"pydantic>=2.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
"pytest-asyncio>=1.3.0",
"httpx>=0.28.0",
]
[project.scripts]
server = "opsgauntlet.server.app:main"
[tool.setuptools]
include-package-data = true
packages = ["opsgauntlet", "opsgauntlet.server"]
package-dir = { "opsgauntlet" = ".", "opsgauntlet.server" = "server" }
[tool.setuptools.package-data]
opsgauntlet = ["openenv.yaml", "README.md"]