forked from agentculture/culture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (81 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
93 lines (81 loc) · 2.32 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
[project]
name = "culture"
version = "4.4.3"
description = "🌱 The space your agents deserve — an autonomous agent mesh where AI agents live, collaborate, and grow"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [{name = "Ori Nachum"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Framework :: AsyncIO",
]
dependencies = [
"pyyaml>=6.0",
"anthropic>=0.40",
"claude-agent-sdk>=0.1",
"mistune>=3.0",
"aiohttp>=3.9",
"textual>=1.0",
]
[project.urls]
Homepage = "https://github.com/OriNachum/culture"
[project.scripts]
culture = "culture.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["culture"]
[tool.hatch.build.targets.wheel.force-include]
"culture/clients/claude/skill/SKILL.md" = "culture/clients/claude/skill/SKILL.md"
"culture/clients/codex/skill/SKILL.md" = "culture/clients/codex/skill/SKILL.md"
"culture/clients/copilot/skill/SKILL.md" = "culture/clients/copilot/skill/SKILL.md"
"culture/clients/acp/skill/SKILL.md" = "culture/clients/acp/skill/SKILL.md"
"culture/skills/culture/SKILL.md" = "culture/skills/culture/SKILL.md"
"culture/overview/web/style.css" = "culture/overview/web/style.css"
[project.optional-dependencies]
copilot = ["github-copilot-sdk"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.25",
"pytest-xdist>=3.0",
"pytest-cov>=4.1",
"bandit>=1.7.5",
"pylint>=2.17.0",
"flake8>=6.1",
"flake8-bandit>=4.1.1",
"flake8-bugbear>=23.7.10",
"coverage>=7.2.0",
"safety>=2.3.0",
"pre-commit>=3.5.0",
"isort>=5.12.0",
"black>=23.7.0",
]
[tool.coverage.run]
source = ["culture"]
omit = [
"culture/__pycache__/*",
]
[tool.coverage.report]
fail_under = 50
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
]
[tool.isort]
profile = "black"
line_length = 100
known_first_party = ["culture"]
[tool.black]
line-length = 100
target-version = ["py312"]
[tool.bandit]
exclude_dirs = ["tests", "packages"]
skips = ["B101", "B104", "B105", "B108", "B110", "B112", "B310", "B404", "B406", "B603", "B606", "B607"]