-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 895 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (35 loc) · 895 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
34
35
36
37
38
[project]
name = "aria-agent-framework"
version = "1.0.0"
description = "Canonical clean-break agent harness: approval gates, execution tracing, and progressive-disclosure Agent Skills."
readme = "README.md"
license = "MIT"
authors = [{name = "Vinícius Raposo"}]
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.22.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"loguru>=0.7.0",
"sqlalchemy>=2.0.0",
"redis>=5.0.0",
"celery>=5.3.0",
"httpx>=0.24.0",
"pyyaml>=6.0.0",
"alembic>=1.13.0",
"psycopg[binary]>=3.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.1.0",
"pyright>=1.1.0",
"build>=1.2.0",
"pytest-asyncio>=0.23.0",
]
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]