forked from kky42/codex-as-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.02 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
[project]
name = "codex-as-mcp"
version = "2025.10.20.1"
description = "MCP server for delegating tasks to Codex CLI subagents"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "kky", email = "kky42@example.com"}
]
keywords = ["mcp", "codex", "code-generation", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp[cli]>=1.12.4",
]
[project.scripts]
codex-as-mcp = "codex_as_mcp.server:main"
[project.urls]
Homepage = "https://github.com/kky42/codex-as-mcp"
Repository = "https://github.com/kky42/codex-as-mcp"
Issues = "https://github.com/kky42/codex-as-mcp/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/codex_as_mcp"]
[dependency-groups]
dev = [
"twine>=6.1.0",
]