fc43fbe4b0
- Merged four separate hardware control projects into unified platform - Created unified requirements.txt with all dependencies - Added comprehensive .gitignore - Added project overview README Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
31 lines
660 B
Python
31 lines
660 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
nueScan - SRAS Scan Planning and Control Software
|
|
Entry point for the application
|
|
|
|
Copyright (C) 2025 Thomas Ales
|
|
Licensed under GNU General Public License v2.0
|
|
"""
|
|
|
|
import sys
|
|
from PyQt6.QtWidgets import QApplication
|
|
from main_window import NueScanMainWindow
|
|
|
|
|
|
def main():
|
|
"""Main entry point for nueScan application"""
|
|
app = QApplication(sys.argv)
|
|
app.setApplicationName("nueScan")
|
|
app.setOrganizationName("SRAS")
|
|
app.setApplicationVersion("0.1.0")
|
|
|
|
# Create and show main window
|
|
main_window = NueScanMainWindow()
|
|
main_window.show()
|
|
|
|
sys.exit(app.exec())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|