mirror of
https://github.com/HKUDS/CLI-Anything.git
synced 2026-05-06 22:26:35 +08:00
Blockers (3):
- .gitignore: add Step 5 (/n8n/* and /n8n/.*), clean up misplaced entries
- Versions: unify to 2.4.7 everywhere (n8n_cli, pyproject, registry, e2e test)
- repl_skin.py: replace custom 135-line module with standard ReplSkin class
(522-line canonical version + n8n coral accent + module-level wrappers)
Should fix (3):
- Rebase onto current upstream/main (1dcf1e0)
- Remove CHANGELOG.md (non-standard, no other harness has one)
- README: English only (removed Spanish section for consistency)
Also:
- Add setup.py following project convention (blender/godot pattern)
- Remove LICENSE and N8N.md (non-standard)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
90 lines
2.1 KiB
Python
90 lines
2.1 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Setup script for cli-anything-n8n
|
|
|
|
Install (dev mode):
|
|
pip install -e .
|
|
|
|
Build:
|
|
python -m build
|
|
|
|
Publish:
|
|
twine upload dist/*
|
|
"""
|
|
|
|
from pathlib import Path
|
|
from setuptools import setup, find_namespace_packages
|
|
|
|
ROOT = Path(__file__).parent
|
|
README = ROOT / "cli_anything/n8n/README.md"
|
|
|
|
long_description = README.read_text(encoding="utf-8") if README.exists() else ""
|
|
|
|
setup(
|
|
name="cli-anything-n8n",
|
|
version="2.4.7",
|
|
description="CLI harness for n8n workflow automation — n8n REST API v1.1.1",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
|
|
author="Juan Jose Sanchez Bernal",
|
|
author_email="info@webcomunica.solutions",
|
|
url="https://github.com/HKUDS/CLI-Anything",
|
|
|
|
project_urls={
|
|
"Source": "https://github.com/HKUDS/CLI-Anything",
|
|
"Tracker": "https://github.com/HKUDS/CLI-Anything/issues",
|
|
"PyPI": "https://pypi.org/project/cli-anything-n8n/",
|
|
},
|
|
|
|
license="MIT",
|
|
|
|
packages=find_namespace_packages(include=("cli_anything.*",)),
|
|
|
|
python_requires=">=3.10",
|
|
|
|
install_requires=[
|
|
"click>=8.1",
|
|
"prompt-toolkit>=3.0",
|
|
"requests>=2.28",
|
|
],
|
|
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7",
|
|
"pytest-cov>=4",
|
|
],
|
|
},
|
|
|
|
entry_points={
|
|
"console_scripts": [
|
|
"cli-anything-n8n=cli_anything.n8n.n8n_cli:main",
|
|
],
|
|
},
|
|
package_data={
|
|
"cli_anything.n8n": ["skills/*.md"],
|
|
},
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
|
|
keywords=[
|
|
"cli",
|
|
"n8n",
|
|
"workflow",
|
|
"automation",
|
|
"cli-anything",
|
|
],
|
|
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
],
|
|
)
|