-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1.1 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
[project]
name = "the-council"
version = "0.1.0"
description = "8 minds. 1 question. Infinite consequences. Multi-agent deliberation with K-ZERO Console."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Kyeong Sun Kim", email = "kyeong.sun.kim@snu.ac.kr"},
]
keywords = ["multi-agent", "llm", "deliberation", "simulation", "k-zero"]
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.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"numpy>=1.24.0",
"plotly>=5.18.0",
"dash>=2.14.0",
]
[project.urls]
Homepage = "https://github.com/ksk5429/kzero"
Repository = "https://github.com/ksk5429/kzero"
[project.scripts]
council = "runner.council_runner:main"
kzero = "runner.demiurge:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["runner*"]