forked from microsoft/agent-governance-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (105 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
117 lines (105 loc) · 2.71 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
111
112
113
114
115
116
117
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "amb-core"
version = "0.3.0"
description = "A lightweight, broker-agnostic message bus designed specifically for AI Agents"
readme = "README.md"
authors = [
{ name = "Microsoft Corporation" }
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pydantic>=2.4.0",
"anyio>=3.0.0",
"aiofiles>=23.0.0",
]
[project.optional-dependencies]
redis = ["redis>=4.0.0"]
rabbitmq = ["aio-pika>=9.0.0"]
kafka = ["aiokafka>=0.8.0"]
all = [
"redis>=4.0.0",
"aio-pika>=9.0.0",
"aiokafka>=0.8.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
]
keywords = [
"message-bus",
"ai-agents",
"pubsub",
"async",
"broker-agnostic",
"redis",
"rabbitmq",
"kafka",
"multi-agent",
"llm",
]
[project.urls]
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
Repository = "https://github.com/microsoft/agent-governance-toolkit"
Documentation = "https://github.com/microsoft/agent-governance-toolkit#readme"
"Bug Tracker" = "https://github.com/microsoft/agent-governance-toolkit/issues"
Changelog = "https://github.com/microsoft/agent-governance-toolkit/releases"
[tool.setuptools.packages.find]
where = ["."]
include = ["amb_core*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.ruff]
target-version = "py38"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"ARG", # flake8-unused-arguments
"SIM", # flake8-simplify
]
ignore = [
"E501", # line too long (handled by formatter)
"B008", # do not perform function calls in argument defaults
"B904", # raise from err
]
[tool.ruff.lint.isort]
known-first-party = ["amb_core"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.coverage.run]
source = ["amb_core"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise ImportError",
"if TYPE_CHECKING:",
]