-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
33 lines (26 loc) · 924 Bytes
/
requirements.txt
File metadata and controls
33 lines (26 loc) · 924 Bytes
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
# Core GUI and Application Dependencies
# Removed tkinter as it is part of the standard library and not needed via pip
ttkbootstrap>=1.10.1
# AI and HTTP
google-generativeai>=0.3.0
grpcio>=1.66.0 # Required for google-generativeai
requests>=2.31.0
# Basic Dependencies (always required)
# Removed standard library modules as they are included with Python and not needed via pip
python-dotenv>=1.0.0 # For environment variable management
# Optional Audio Dependencies (install separately if needed)
# Uncomment these lines if you want full audio features:
# pygame>=2.5.0
# numpy>=1.24.0
# scipy>=1.10.0
# sounddevice>=0.4.6
# soundfile>=0.12.1
# Development and Optional
typing_extensions>=4.0.0 # For better type hints
# Platform-specific dependencies
# Windows
pywin32>=306;platform_system=="Windows"
# macOS
# pyobjc-framework-Cocoa>=9.0;platform_system=="Darwin"
# Linux
# python3-tk;platform_system=="Linux"