-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (76 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
87 lines (76 loc) · 2.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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aipass"
version = "2.1.0"
description = "A local multi-agent framework where your AI agents keep their memory, work together, and never ask you to re-explain context"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "AIPass", email = "aipass.system@gmail.com" },
]
keywords = ["ai", "agents", "routing", "discovery", "multi-agent", "orchestration"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"rich>=13.0",
"watchdog>=3.0",
"requests>=2.28",
]
[project.urls]
Homepage = "https://github.com/AIOSAI/AIPass"
Repository = "https://github.com/AIOSAI/AIPass"
"Bug Tracker" = "https://github.com/AIOSAI/AIPass/issues"
[project.optional-dependencies]
llm = [
"openai>=1.0",
]
trinity = [
"trinity-pattern>=1.0.0",
]
seedgo = []
dev = [
"pytest",
"pytest-cov",
"pytest-timeout",
"ruff",
"coverage",
"pyright",
]
[project.scripts]
drone = "aipass.drone.cli:main"
aipass = "aipass.cli:cli_entry"
[tool.hatch.build.targets.wheel]
packages = ["src/aipass"]
[tool.pytest.ini_options]
testpaths = ["tests", "src"]
norecursedirs = ["templates", "*.egg-info", ".git", ".venv", "__pycache__"]
[tool.coverage.run]
source = ["src/aipass"]
omit = ["*/tests/*", "*/templates/*"]
[tool.coverage.report]
show_missing = true
fail_under = 70
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["E402"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]