-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.88 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cccc-pair"
version = "0.4.8"
description = "Global multi-agent delivery kernel with working groups, scopes, and an append-only collaboration ledger"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
authors = [
{ name = "ChesterRa", email = "ra@ike.ba" }
]
license = "Apache-2.0"
keywords = ["orchestrator","ai","rfd","pair","collaboration"]
dependencies = [
"PyYAML>=6.0,<7.0",
"dingtalk-stream>=0.24.3",
"fastapi>=0.110,<1.0",
"httpx[socks]>=0.24,<1.0",
"lark-oapi>=1.0.0",
"pydantic>=2.0,<3.0",
"pywinpty>=2.0; platform_system == 'Windows'",
"python-multipart>=0.0.7,<1.0",
"uvicorn[standard]>=0.27,<1.0",
"websocket-client>=1.8,<2.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://github.com/ChesterRa/cccc"
Repository = "https://github.com/ChesterRa/cccc"
Issues = "https://github.com/ChesterRa/cccc/issues"
[project.scripts]
cccc = "cccc.cli:main"
ccccd = "cccc.daemon_main:main"
[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
[tool.setuptools.package-data]
"cccc.ports.web" = ["dist/**"]
"cccc.resources" = ["*.md", "*.yaml"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["cccc*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]