Initial commit: merge nuescan, pymso, pybbd202, and pypewpewhops into scanengine-3

- 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>
This commit is contained in:
Thomas Ales [M S E]
2026-01-16 20:11:31 -06:00
commit fc43fbe4b0
65 changed files with 19127 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
#!/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()