aipm / sdk-python /pyproject.toml
bhaskarvilles's picture
Phase 1 Complete: Core Protocol & Python SDK
2effa7f verified
Raw
History Blame Contribute Delete
1.38 kB
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aipm"
version = "0.1.0"
description = "Agent Interoperability Protocol Models - Python SDK"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "AIPM Contributors"}
]
keywords = ["ai", "agents", "interoperability", "protocol", "multi-agent"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pydantic>=2.0.0",
"cryptography>=41.0.0",
"httpx>=0.25.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
]
[project.urls]
Homepage = "https://github.com/aipm/aipm"
Documentation = "https://docs.aipm.org"
Repository = "https://github.com/aipm/aipm"
[tool.setuptools]
packages = ["aipm"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.mypy]
python_version = "3.9"
strict = true