- Comandos: search, list, tree, copy, info, add, grupos, stats - Conexión SSH a HST (72.62.2.84) - Estructura autoreferenciada (sin cat/subcat) - Grupos válidos: hst, spe, vsn, vue, flg 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
"""
|
|
Setup para TZZR CLI
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as f:
|
|
long_description = f.read()
|
|
|
|
with open("requirements.txt", "r", encoding="utf-8") as f:
|
|
requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
|
|
|
|
setup(
|
|
name="tzzr-cli",
|
|
version="0.1.0",
|
|
author="ARCHITECT",
|
|
author_email="architect@tzzr.local",
|
|
description="CLI para gestionar el sistema TZZR",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="http://69.62.126.110:3000/architect/tzzr-cli",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"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",
|
|
"Topic :: Database :: Front-Ends",
|
|
"Topic :: Utilities",
|
|
],
|
|
python_requires=">=3.8",
|
|
install_requires=requirements,
|
|
entry_points={
|
|
"console_scripts": [
|
|
"tzzr=tzzr.cli:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|