38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=69"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "omp-rpc"
|
|
version = "0.1.0"
|
|
description = "Typed Python client for the omp coding-agent RPC protocol"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "OpenAI Codex" }]
|
|
keywords = ["omp", "rpc", "agent", "coding-agent", "jsonl", "stdio"]
|
|
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",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: Libraries",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://omp.sh/"
|
|
Repository = "https://github.com/can1357/oh-my-pi"
|
|
Documentation = "https://github.com/can1357/oh-my-pi/blob/main/docs/rpc.md"
|
|
|
|
[tool.setuptools]
|
|
package-dir = { "" = "src" }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
omp_rpc = ["py.typed"]
|