cluster4npu/__init__.py
Mason 92f9d956af Remove cluster4npu_ui package prefix and remove export/analysis buttons
- Update all imports to use relative imports instead of cluster4npu_ui.* prefix
- Remove export configuration functionality from dashboard menu
- Remove performance analysis action from pipeline menu
- Update dependencies in pyproject.toml to include NodeGraphQt and PyQt5
- Maintain clean import structure across all modules

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-07 12:17:59 +08:00

55 lines
1.4 KiB
Python

"""
Cluster4NPU UI - Modular PyQt5 Application for ML Pipeline Design
This package provides a comprehensive, modular user interface for designing,
configuring, and deploying high-performance ML inference pipelines optimized
for Kneron NPU dongles.
Main Modules:
- config: Theme and settings management
- core: Business logic and node implementations
- ui: User interface components and windows
- utils: Utility functions and helpers
- resources: Static resources and assets
Key Features:
- Visual node-based pipeline designer
- Multi-stage inference workflow support
- Hardware-aware resource allocation
- Real-time performance estimation
- Export to multiple deployment formats
Usage:
# Run the application
from main import main
main()
# Or use individual components
from core.nodes import ModelNode, InputNode
from config.theme import apply_theme
Author: Cluster4NPU Team
Version: 1.0.0
License: MIT
"""
__version__ = "1.0.0"
__author__ = "Cluster4NPU Team"
__email__ = "team@cluster4npu.com"
__license__ = "MIT"
# Package metadata
__title__ = "Cluster4NPU UI"
__description__ = "Modular PyQt5 Application for ML Pipeline Design"
__url__ = "https://github.com/cluster4npu/ui"
# Import main components for convenience
from .main import main
__all__ = [
"main",
"__version__",
"__author__",
"__title__",
"__description__"
]