-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (32 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
32 lines (32 loc) · 834 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
[project]
name = "cbtrade"
version = "0.1.0"
description = "CBTrade - Cryptocurrency Trading Bot with MySQL"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
# Database (MySQL)
"pymysql>=1.1.0",
"cryptography>=43.0.0", # Required for PyMySQL secure connections
# Coinbase API
"coinbase-advanced-py>=1.8.2",
"certifi>=2024.8.30",
# Data Analysis & Technical Analysis
"pandas>=2.2.3",
"pandas-ta>=0.3.14b0",
"numpy>=2.1.0",
# Web Interface
"flask>=3.0.3",
"werkzeug>=3.0.4",
# Utilities
"python-dotenv>=1.0.0",
"psutil>=7.0.0",
"requests>=2.32.3",
"pyyaml>=6.0.2",
# Custom FST packages
"fstrent-bkitup>=0.1.4",
"fstrent-charts>=1.0.5",
"fstrent-colors>=1.0.12",
# Optional: Text-to-speech notifications
"pyttsx3>=2.99",
]