-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.16 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
[project]
name = "claude-node"
version = "0.1.0"
description = "Subprocess-based Claude CLI controller for multi-agent systems. No SDK dependency."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
authors = [{name = "claude-node contributors"}]
keywords = [
"claude",
"claude-code",
"multi-agent",
"agentic",
"stream-json",
"subprocess",
"llm",
"claude-cli",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests/unit", "tests/integration"]
markers = [
"unit: unit tests that do not require the claude binary",
"integration: integration tests that require the claude binary",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["claude_node*"]