-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.35 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "team-core"
version = "0.17.1"
description = "Orchestrate a cluster of containerized local LLMs (via Ollama), each with a specific persona and role, that collaborate to solve a goal."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [{ name = "Fabio Cumbo" }]
keywords = ["llm", "ollama", "multi-agent", "orchestration", "docker", "agents"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pyyaml>=6.0",
"requests>=2.28",
"docker>=6.1",
"click>=8.1",
"rich>=13.0",
"jinja2>=3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.10",
]
[project.scripts]
team = "team.cli:cli"
[project.urls]
Homepage = "https://github.com/cumbof/team"
Issues = "https://github.com/cumbof/team/issues"
[tool.pytest.ini_options]
markers = [
"integration: end-to-end tests that require Docker and a live Ollama instance",
]
[tool.setuptools.packages.find]
include = ["team*"]
exclude = ["tests*", "examples*"]
[tool.setuptools.package-data]
team = ["templates/*.j2", "docker/*", "personas/*.yaml"]