-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.07 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "canopykit"
version = "0.1.0"
description = "Canopy-native coordination runtime for high-performance agent teams."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
keywords = ["canopy", "agents", "coordination", "openclaw", "runtime"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"requests>=2.31.0",
]
[project.urls]
Homepage = "https://github.com/kwalus/CanopyKit"
Repository = "https://github.com/kwalus/CanopyKit"
Canopy = "https://github.com/kwalus/Canopy"
Changelog = "https://github.com/kwalus/CanopyKit/blob/main/CHANGELOG.md"
Security = "https://github.com/kwalus/CanopyKit/blob/main/SECURITY.md"
[project.scripts]
canopykit = "canopykit.__main__:main"
[tool.setuptools.packages.find]
include = ["canopykit*"]
[tool.pytest.ini_options]
testpaths = ["tests"]