-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.84 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
[project]
name = "openadapt-consilium"
version = "0.4.0"
description = "Multi-LLM council for consensus-driven AI responses"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Richard Abrich", email = "richard@openadapt.ai" },
]
keywords = ["llm", "ai", "council", "multi-model", "consensus"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"openai>=1.0",
"anthropic>=0.20",
"google-genai>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-timeout>=2.0",
"ruff>=0.4",
]
[project.scripts]
consilium = "consilium.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/consilium"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"live: integration tests that require real API keys (deselect with '-m \"not live\"')",
]
[project.urls]
Homepage = "https://github.com/OpenAdaptAI/openadapt-consilium"
Repository = "https://github.com/OpenAdaptAI/openadapt-consilium"
"Bug Tracker" = "https://github.com/OpenAdaptAI/openadapt-consilium/issues"
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["src/consilium/__init__.py:__version__"]
commit_message = "chore: release {version}"
major_on_zero = false
[tool.semantic_release.branches.main]
match = "main"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "style", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]