0adaaad971
- Servidor gRPC: Agregar interceptores de autenticación y UserRegistry para aislar sesiones por usuario.
- Contexto de Hilos: Corregir propagación de ContextVar _current_user a hilos secundarios en ExecutionServicer.
- Configuración Compartida: Implementar herencia y deep merge de settings de IA ('ai') y servidores MCP en configfile.
- Hot-Reload: Recarga automática en caliente de la configuración compartida global ante cambios en disco.
- CLI: Agregar comandos e interfaces de usuario para autenticación (login) y administración de usuarios.
- Pruebas: Desarrollar tests unitarios completos (test_shared_ai.py) y resolver regresiones en la suite existente.
66 lines
1.8 KiB
INI
66 lines
1.8 KiB
INI
[metadata]
|
|
name = connpy
|
|
version = attr: connpy._version.__version__
|
|
description = Connpy is a SSH/Telnet connection manager and automation module
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
keywords = networking, automation, docker, kubernetes, ssh, telnet, connection manager
|
|
author = Federico Luzzi
|
|
author_email = fluzzi@gmail.com
|
|
url = https://github.com/fluzzi/connpy
|
|
license = Custom Software License
|
|
license_files = LICENSE
|
|
project_urls =
|
|
Bug Tracker = https://github.com/fluzzi/connpy/issues
|
|
Documentation = https://fluzzi.github.io/connpy/
|
|
classifiers =
|
|
Development Status :: 4 - Beta
|
|
Topic :: System :: Networking
|
|
Intended Audience :: Telecommunications Industry
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3.12
|
|
Natural Language :: English
|
|
Operating System :: MacOS
|
|
Operating System :: Unix
|
|
|
|
[options]
|
|
packages = find:
|
|
python_requires = >=3.10
|
|
install_requires =
|
|
rich>=13.7.1
|
|
rich-argparse>=1.4.0
|
|
argcomplete>=3.1.2
|
|
inquirer>=3.3.0
|
|
pexpect>=4.8.0
|
|
pycryptodome>=3.18.0
|
|
PyYAML>=6.0.1
|
|
pyfzf>=0.3.1
|
|
litellm>=1.40.0,<2.0.0
|
|
grpcio>=1.62.0,<2.0.0
|
|
grpcio-tools>=1.62.0,<2.0.0
|
|
protobuf>=6.31.1,<7.0.0
|
|
google-api-python-client>=2.125.0
|
|
google-auth-oauthlib>=1.2.0
|
|
google-auth-httplib2>=0.2.0
|
|
prompt-toolkit>=3.0.0
|
|
mcp>=1.2.0,<2.0.0
|
|
aiohttp>=3.9.0,<4.0.0
|
|
httpx>=0.27.0,<1.0.0
|
|
requests>=2.31.0
|
|
bcrypt>=4.1.0
|
|
PyJWT>=2.8.0
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
conn = connpy.__main__:main
|
|
connpy = connpy.__main__:main
|
|
connpy-completion-helper = connpy.completion:main
|
|
|
|
[options.package_data]
|
|
connpy =
|
|
core_plugins/*
|
|
proto/*
|
|
grpc_layer/*
|