-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 926 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 926 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentbridge"
version = "0.1.0"
description = "Universal AI Agent Interoperability Protocol"
authors = [
{name = "TheKoma-X"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
"requests>=2.31.0",
"websockets>=11.0.0",
"pyyaml>=6.0",
"click>=8.1.0",
"typing-extensions>=4.5.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"isort>=5.0.0"
]
[project.scripts]
agentbridge = "agentbridge.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["agentbridge*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = "test_*.py"