Files
hkuds--cli-anything/cc-switch/agent-harness/setup.py
T
wehub-resource-sync 4904b939ef
Check Codex Skill / test-installer (push) Failing after 1s
Deploy to GitHub Pages / build (push) Failing after 1s
Check Root Skills / validate-root-skills (push) Failing after 1s
Deploy to GitHub Pages / deploy (push) Has been skipped
Publish cli-anything-hub to PyPI / publish (push) Failing after 1s
PR Labeler Tests / test (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:06:50 +08:00

25 lines
716 B
Python

"""Setup script for CC Switch CLI harness."""
from setuptools import setup, find_namespace_packages
setup(
name="cli-anything-ccswitch",
version="1.0.0",
description="CLI interface for CC Switch — manage AI coding tool configurations",
author="cli-anything contributors",
python_requires=">=3.10",
packages=find_namespace_packages(include=["cli_anything.*"]),
package_data={
"cli_anything.ccswitch": ["skills/*.md"],
},
install_requires=[
"click>=8.0",
"prompt_toolkit>=3.0",
"tomlkit>=0.12",
],
entry_points={
"console_scripts": [
"cli-anything-ccswitch=cli_anything.ccswitch.ccswitch_cli:main",
],
},
)