35 lines
718 B
Plaintext
35 lines
718 B
Plaintext
# 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 |