-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 1.44 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "protoss"
version = "0.1.0"
description = "Constitutional AI coordination through emergent agent swarms."
authors = ["Tyson Chan <tyson.chan@proton.me>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/iteebz/protoss"
repository = "https://github.com/iteebz/protoss"
keywords = ["ai", "agents", "protoss", "coordination", "distributed", "cognition", "autonomous", "multiagent", "starcraft", "psionic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [{ include = "protoss", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
pydantic = "^2.7.1"
pydantic-settings = "^2.2.1"
python-dotenv = "^1.0.1"
rich = "^13.7.1"
typer = "^0.17.4"
cogency = {path = "../cogency"}
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
pytest = "^8.4.1"
pytest-asyncio = "^0.21.0"
[tool.poetry.scripts]
protoss = "protoss.cli:app"
pytest = "pytest:main"