-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-build.txt
More file actions
62 lines (46 loc) · 1.78 KB
/
requirements-build.txt
File metadata and controls
62 lines (46 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# CuePoint - pinned dependencies for shipped builds
#
# This file is used for reproducible release builds (Step 8.2).
# Keep `requirements.txt` flexible for development; keep this pinned for CI/release packaging.
#
# NOTE: Pins are currently aligned to the minimum versions declared in requirements.txt.
# Update intentionally and run the full test suite + security scans when changing.
#
# IMPORTANT: This file must include ALL runtime dependencies from requirements.txt
# (excluding test dependencies) to ensure the packaged app works correctly.
# GUI Framework (required for GUI application)
PySide6==6.10.1
# HTTP requests and web scraping
requests==2.33.0
aiohttp==3.13.3
beautifulsoup4==4.14.3
# DuckDuckGo search integration
ddgs==9.0.0
# Fuzzy string matching for track/artist similarity
rapidfuzz==3.14.3
# Date parsing for release dates
python-dateutil==2.9.0.post0
# YAML configuration file support
pyyaml==6.0.3
# Progress bars for better user experience
tqdm==4.67.1
# HTTP response caching (enabled by default)
# Speeds up repeated runs by caching Beatport page responses
requests-cache==1.2.1
# Browser automation for JavaScript-rendered content
# Playwright (recommended - faster, more modern)
# Note: Browser binaries are installed separately via `playwright install chromium`
playwright==1.57.0
# Selenium (alternative browser automation)
# Also need ChromeDriver or GeckoDriver in PATH (not bundled)
selenium==4.39.0
# Excel export support (for GUI export functionality)
openpyxl==3.1.5
# Audio tag writing (Key, Comment, Year for Write to track tags)
mutagen>=1.47.0
# Error reporting (optional: set SENTRY_DSN to enable)
sentry-sdk>=2.0.0,<3
# Build tool (PyInstaller for packaging)
pyinstaller==6.17.0
# Icon generation (generate_icons.py: logo.png -> icon.ico / icon.icns)
Pillow==12.1.1