49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=61.0", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "openclaw-extra"
|
||
|
|
version = "1.0.0"
|
||
|
|
description = "OpenClaw extra utilities - manage agents, sessions, models, and workspaces"
|
||
|
|
readme = "README.md"
|
||
|
|
license = {text = "MIT"}
|
||
|
|
requires-python = ">=3.8"
|
||
|
|
authors = [
|
||
|
|
{name = "hz4th_coder", email = "hz4th_coder@tphai.com"}
|
||
|
|
]
|
||
|
|
classifiers = [
|
||
|
|
"Development Status :: 4 - Beta",
|
||
|
|
"Intended Audience :: Developers",
|
||
|
|
"License :: OSI Approved :: MIT License",
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"Programming Language :: Python :: 3.8",
|
||
|
|
"Programming Language :: Python :: 3.9",
|
||
|
|
"Programming Language :: Python :: 3.10",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
]
|
||
|
|
dependencies = [
|
||
|
|
"requests>=2.28.0",
|
||
|
|
"websocket-client>=1.4.0",
|
||
|
|
"rich>=13.0.0",
|
||
|
|
"typer>=0.9.0",
|
||
|
|
"fastapi>=0.100.0",
|
||
|
|
"uvicorn>=0.23.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=7.0",
|
||
|
|
"pytest-cov>=4.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
openclaw-extra = "openclaw_extra.cli:app"
|
||
|
|
|
||
|
|
[project.urls]
|
||
|
|
Homepage = "http://121.40.164.32:12007/hz4th_coder/openclaw-extra"
|
||
|
|
Repository = "http://121.40.164.32:12007/hz4th_coder/openclaw-extra.git"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["src"]
|