-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.23 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
[tool.poetry]
name = "ocp-agent"
version = "1.0.0"
description = "Python implementation of the Open Context Protocol for AI agents"
authors = ["OCP Contributors"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/opencontextprotocol/ocp-python"
homepage = "https://opencontextprotocol.io"
keywords = ["ocp", "open-context-protocol", "ai", "agent", "context", "http", "api", "openapi"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [{include = "ocp_agent", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.0"
httpx = "^0.28.0"
jsonschema = "^4.26.0"
pyyaml = "^6.0.0"
pydantic = "^2.12.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0"
requests-mock = "^1.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"