14 lines
575 B
Plaintext
14 lines
575 B
Plaintext
# Core Dependencies
|
|
python-dotenv==1.0.0 # Loads environment variables from .env
|
|
requests==2.31.0 # HTTP requests for Twitch API (token refresh, etc.)
|
|
|
|
# Discord Bot Dependencies
|
|
discord.py==2.3.2 # Main Discord bot library (async)
|
|
PyNaCl==1.5.0 # Enables voice support (optional, required if using voice features)
|
|
|
|
# Twitch Bot Dependencies
|
|
twitchio==2.7.1 # Twitch chat bot library (async)
|
|
|
|
# Utility & Logging
|
|
aiohttp==3.9.1 # Async HTTP requests (dependency for discord.py & twitchio)
|