63 lines
1.6 KiB
TOML
63 lines
1.6 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "orchestrated-discussions"
|
|
version = "0.1.0"
|
|
description = "Multi-agent AI discussion orchestration with voting and phases"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{name = "Rob"}
|
|
]
|
|
keywords = ["ai", "discussion", "multi-agent", "orchestration", "voting", "cli"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: MacOS",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
dependencies = [
|
|
"PyYAML>=6.0",
|
|
"smarttools @ git+https://gitea.brrd.tech/rob/SmartTools.git",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
tui = [
|
|
"urwid>=2.1.0",
|
|
]
|
|
gui = [
|
|
"dearpygui>=2.0.0",
|
|
"artifact-editor @ git+https://gitea.brrd.tech/rob/artifact-editor.git",
|
|
]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"pytest-cov>=4.0",
|
|
"urwid>=2.1.0",
|
|
"dearpygui>=2.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
discussions = "discussions.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/rob/orchestrated-discussions"
|
|
Documentation = "https://github.com/rob/orchestrated-discussions#readme"
|
|
Repository = "https://github.com/rob/orchestrated-discussions.git"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|