-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.52 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-runtime-grid"
version = "0.1.0"
description = "Deterministic local runtime grid for agent job execution."
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [{name = "Ashishki"}]
keywords = ["agent-runtime", "reliability", "redis-streams", "postgresql", "evaluation"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
]
dependencies = [
"alembic>=1.13,<2.0",
"asyncpg>=0.29,<1.0",
"fastapi>=0.115,<1.0",
"opentelemetry-api>=1.28,<2.0",
"opentelemetry-sdk>=1.28,<2.0",
"prometheus-client>=0.21,<1.0",
"pydantic>=2.10,<3.0",
"pydantic-settings>=2.6,<3.0",
"redis>=5.2,<6.0",
"sqlalchemy>=2.0,<3.0",
"typer>=0.13,<1.0",
"uvicorn[standard]>=0.32,<1.0",
]
[project.urls]
Homepage = "https://github.com/ashishki/Agent-Runtime-Grid"
Issues = "https://github.com/ashishki/Agent-Runtime-Grid/issues"
[project.scripts]
agent-runtime-grid = "agent_runtime_grid.cli.main:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"agent_runtime_grid.storage" = ["migrations/*.sql"]
[tool.pytest.ini_options]
addopts = "-ra"
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]