-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.06 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aming-claw"
version = "0.1.1"
description = "Governance-driven workflow platform"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"requests==2.32.3",
"PyYAML>=6.0",
"networkx>=3.0",
"click>=8.0",
]
[project.optional-dependencies]
redis = ["redis>=5.0"]
docker = ["docker>=7.0"]
full = ["redis>=5.0", "docker>=7.0"]
[project.scripts]
aming-claw = "agent.cli:main"
aming-governance = "agent.governance.server:main"
aming-governance-host = "start_governance:main"
[tool.setuptools]
py-modules = ["start_governance", "aming_claw"]
[tool.setuptools.packages.find]
where = ["."]
include = ["agent*"]
exclude = [
"agent.tests*",
"agent.governance.chain_history*",
".worktrees*",
"shared-volume*",
"runtime*",
"frontend*",
"dist*",
"docs.dev*",
]
namespaces = true
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.yml", "*.json"]
"agent.mcp" = ["resources/*"]
"agent.governance.dashboard_dist" = ["**/*"]