mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-30 14:00:12 +03:00
Update all references from FlowNet-Lab to GNS3-Copilot in package names, documentation, and logging. This includes: - Module and package __init__.py files - License headers and file descriptions - Log messages and internal comments - Remove deprecated tools: GNS3CreateAreaDrawingTool and LinuxTelnetBatchTool The renaming aligns with the project's new branding while maintaining all existing functionality.
20 lines
575 B
Python
20 lines
575 B
Python
"""
|
|
GNS3-Copilot - AI-powered network automation assistant for GNS3.
|
|
|
|
This package provides a command-line interface for launching the GNS3-Copilot
|
|
Streamlit application with support for Streamlit parameter passthrough.
|
|
"""
|
|
|
|
# Dynamic version management
|
|
__version__: str = "unknown"
|
|
try:
|
|
from importlib.metadata import version
|
|
|
|
__version__ = str(version("gns3-copilot"))
|
|
except Exception:
|
|
__version__ = "unknown"
|
|
|
|
__author__ = "Guobin Yue"
|
|
__description__ = "AI-powered network automation assistant for GNS3"
|
|
__url__ = "https://github.com/yueguobin/gns3-copilot"
|