-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (100 loc) · 2.75 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (100 loc) · 2.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "actant"
version = "0.18.0"
description = "Temporal-native runtime for persistent agents with durable inboxes, governed tools, and replay"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
keywords = ["agents", "llm", "temporal", "workflow", "orchestration"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
"sqlalchemy>=2.0",
# Temporal is the only supported runtime executor today; treating it
# as a hard dep lets us hard-import the SDK and type its surface
# properly instead of guarding every call site behind a runtime
# ImportError shim.
"temporalio>=1.8",
]
[project.scripts]
actant = "actant.cli:main"
[project.optional-dependencies]
s3 = ["boto3>=1.35"]
anthropic = ["anthropic>=0.40"]
gemini = ["google-genai>=1.0"]
openai = ["openai>=1.60"]
qwen = ["openai>=1.60"]
# The Modal sandbox backend. Products bring their own object storage; the
# mount only needs the bucket keys as a Modal secret.
modal = ["modal>=1.5.5,<2"]
providers = [
"anthropic>=0.40",
"google-genai>=1.0",
"openai>=1.60",
]
dev = [
"asyncpg>=0.30",
"greenlet>=3",
"boto3>=1.35",
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
"pyright>=1.1",
"pre-commit>=4.0",
# Authoring Actant's own migrations. Consumers need neither: the shipped
# revision files are plain modules, run by whatever Alembic the
# application already has.
# >=1.16 for `path_separator`; the old `version_path_separator`
# is deprecated. Consumers are unpinned -- they run whatever
# Alembic the application already has.
"alembic>=1.16",
"psycopg2-binary>=2.9",
]
[project.urls]
Homepage = "https://github.com/johnathanchiu/actant"
Repository = "https://github.com/johnathanchiu/actant"
Issues = "https://github.com/johnathanchiu/actant/issues"
Documentation = "https://actant.readthedocs.io/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["actant"]
[tool.hatch.build.targets.wheel.force-include]
"actant/py.typed" = "actant/py.typed"
"actant/_assets/temporal-compose.yml" = "actant/_assets/temporal-compose.yml"
[tool.hatch.build.targets.sdist]
include = [
"/actant",
"/docs",
"/tests",
"/LICENSE",
"/CHANGELOG.md",
"/README.md",
"/pyproject.toml",
]
exclude = [
"**/.venv",
"**/__pycache__",
"**/node_modules",
"**/*.pyc",
"**/*.tsbuildinfo",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 99
[dependency-groups]
docs = [
"mkdocs-material>=9.6",
]