-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 1.18 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zero-context-protocol-sdk"
version = "0.2.0"
description = "Official Python SDK for Zero Context Protocol (ZCP), with MCP-compatible server surfaces and native protocol support"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{name = "Zero Context Protocol Authors"}]
dependencies = []
[project.urls]
Homepage = "https://github.com/FishCodeTech/zero-context-protocol-python"
Documentation = "https://github.com/FishCodeTech/zero-context-protocol"
Repository = "https://github.com/FishCodeTech/zero-context-protocol-python"
Issues = "https://github.com/FishCodeTech/zero-context-protocol-python/issues"
[project.optional-dependencies]
mcp = ["mcp>=1.3.0"]
openai = ["openai>=1.0.0"]
dev = ["pytest>=8.0.0", "ruff>=0.11.0", "build>=1.2.2", "twine>=5.1.1", "openpyxl>=3.1.5"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["zcp*"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint.per-file-ignores]
"examples/*.py" = ["E402"]