33 lines
808 B
TOML
33 lines
808 B
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "vibework-agent-sdk"
|
|
version = "0.1.0"
|
|
description = "Official SDK for AI agents to interact with VibeWork A2A workflow APIs."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "ISC"
|
|
authors = [{ name = "VibeWork Team" }]
|
|
dependencies = [
|
|
"requests>=2.31,<3.0",
|
|
"pydantic>=2.6,<3.0",
|
|
]
|
|
classifiers = [
|
|
"License :: OSI Approved :: ISC License (ISCL)",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://agent.wooo.work"
|
|
Repository = "https://github.com/agent-bounty-protocol"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "."}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|