-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 726 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 726 Bytes
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
from setuptools import find_namespace_packages, setup
setup(
name="cli-anything-structured",
version="0.1.0",
description="Structured Web CLI harness for AI agents",
license="MIT",
packages=find_namespace_packages(include=["cli_anything.*"]),
include_package_data=True,
package_data={
"cli_anything.structured": ["README.md", "skills/SKILL.md"],
},
install_requires=[
"click>=8.1,<9",
"mcp>=1.26,<2",
"websocket-client>=1.8,<2",
],
entry_points={
"console_scripts": [
"cli-anything-structured=cli_anything.structured.structured_cli:main",
"structured-mcp=cli_anything.structured.mcp_server:main",
]
},
)