#!/bin/bash
echo "Installing CryptoBot Trading Bot..."
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
echo "Installation complete. Please edit .env with your Binance API keys."
