updated
This commit is contained in:
35
windows_print_service/requirements_complete.txt
Normal file
35
windows_print_service/requirements_complete.txt
Normal file
@@ -0,0 +1,35 @@
|
||||
# Windows Print Service - Complete Requirements
|
||||
# All dependencies needed for the self-contained service
|
||||
|
||||
# Core Python libraries (usually built-in)
|
||||
# These should be available in any Python 3.7+ installation
|
||||
|
||||
# For HTTP server
|
||||
http.server
|
||||
socketserver
|
||||
urllib.request
|
||||
urllib.parse
|
||||
|
||||
# For system operations
|
||||
os
|
||||
sys
|
||||
subprocess
|
||||
tempfile
|
||||
shutil
|
||||
pathlib
|
||||
|
||||
# For data handling
|
||||
json
|
||||
logging
|
||||
threading
|
||||
time
|
||||
datetime
|
||||
|
||||
# For Windows-specific operations
|
||||
# These are handled by subprocess calls to Windows commands
|
||||
|
||||
# Optional: PyInstaller for creating standalone executable
|
||||
# PyInstaller==5.13.2
|
||||
|
||||
# Note: This service is designed to work with Python standard library only
|
||||
# No external dependencies required for basic functionality
|
||||
Reference in New Issue
Block a user