-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 981 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 981 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agenthub-workspace"
version = "0.1.0"
description = "A Web-based multi-agent collaboration workspace built with FastAPI and React"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["agent", "multi-agent", "llm", "fastapi", "react"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.8.0",
"PyYAML>=6.0.2",
]
[dependency-groups]
dev = [
"httpx>=0.27.0",
"pytest>=8.3.0",
]
[project.urls]
Repository = "https://github.com/Prado-learning/AgentHub"
[tool.setuptools.packages.find]
where = ["src", "."]
include = ["agenthub*", "app*"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]
testpaths = ["tests"]