This commit is contained in:
2025-09-25 22:26:32 +03:00
parent 854b6980bc
commit 02277dd55b
27 changed files with 3636 additions and 1855 deletions

View 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