mirror of
https://fastgit.cc/github.com/HKUDS/CLI-Anything
synced 2026-04-21 05:10:42 +08:00
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
from pathlib import Path
|
|
from setuptools import setup, find_namespace_packages
|
|
|
|
_readme = Path("cli_anything/cloudanalyzer/README.md")
|
|
_long_description = _readme.read_text(encoding="utf-8") if _readme.is_file() else ""
|
|
|
|
setup(
|
|
name="cli-anything-cloudanalyzer",
|
|
version="1.0.0",
|
|
description="Agent-friendly CLI harness for CloudAnalyzer point cloud QA platform",
|
|
long_description=_long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="cli-anything",
|
|
python_requires=">=3.10",
|
|
packages=find_namespace_packages(include=["cli_anything.*"]),
|
|
package_data={
|
|
"cli_anything.cloudanalyzer": ["skills/*.md"],
|
|
},
|
|
install_requires=[
|
|
"click>=8.0.0",
|
|
"prompt-toolkit>=3.0.0",
|
|
"cloudanalyzer",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"cli-anything-cloudanalyzer=cli_anything.cloudanalyzer.cloudanalyzer_cli:main",
|
|
],
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Topic :: Scientific/Engineering :: GIS",
|
|
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
],
|
|
)
|