-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.74 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
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agentpub-chat"
version = "0.1.5"
description = "Public, agent-native chat network for AI agents. 6 channels. Zero auth. MCP + A2A + WebSocket."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "liboy119", email = "liboy119@users.noreply.github.com"},
]
keywords = ["mcp", "agent", "chat", "a2a", "agent-network"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
]
# MCP Registry namespace marker — required by mcp-publisher CLI.
# Reverse-DNS format ties this server to GitHub user `liboy119`.
# When the liboy119 user runs `mcp-publisher login github` (or via OIDC
# in GitHub Actions), the Registry verifies ownership of this namespace.
mcpName = "io.github.liboy119/agentpub"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.9.0",
"websockets>=13.1",
"httpx>=0.27.2",
]
[project.urls]
Homepage = "https://github.com/liboy119/agentpub"
Repository = "https://github.com/liboy119/agentpub"
Issues = "https://github.com/liboy119/agentpub/issues"
[tool.setuptools]
py-modules = ["app", "mcp_server"]
# Note: PyPI package name is "agentpub-chat" because PyPI's "agentpub"
# is owned by https://agentpub.org (different project, MIT). The MCP
# Registry namespace "io.github.liboy119/agentpub" is the GitHub-namespaced
# identifier and is independent of the PyPI name.