financial_news_bot / pyproject.toml
Dmitry Beresnev
add stock predictor, fix news iterator, etc
23c855e
[project]
requires-python = ">=3.11"
name = "financial_news_bot"
version = "0.1.0"
description = "new sentiment analyzer using lexicon based and machine learning techniques"
authors = [
{ name = "Your Name", email = "your@email.com" }
]
dependencies = [
"pandas>=1.5.0",
"streamlit>=1.28.0",
"streamlit-option-menu>=0.3.6",
"transformers>=4.21.0",
"torch>=1.13.0",
"torchvision>=0.14.0",
"torchaudio>=0.13.0",
"tokenizers>=0.13.0",
"huggingface-hub>=0.10.0",
"accelerate>=0.20.0",
"safetensors>=0.3.0",
"textblob>=0.17.1",
"nltk>=3.7",
"scikit-learn>=1.1.0",
"plotly>=5.10.0",
"matplotlib>=3.5.0",
"seaborn>=0.11.0",
"numpy>=1.21.0",
"openpyxl>=3.0.0",
"xlsxwriter>=3.0.0",
"yfinance>=0.1.87",
"pandas-datareader>=0.10.0",
"alpha-vantage>=2.3.1",
"finnhub-python>=2.4.24",
"requests>=2.28.0",
"beautifulsoup4>=4.11.0",
"selenium>=4.5.0",
"feedparser>=6.0.10",
"newspaper3k>=0.2.8",
"python-dateutil>=2.8.2",
"pytz>=2022.1",
"python-docx>=0.8.11",
"PyPDF2>=2.12.0",
"diskcache>=5.4.0",
"joblib>=1.2.0",
"python-dotenv>=0.20.0",
"pyyaml>=6.0",
"loguru>=0.6.0",
"pytest>=7.1.0",
"sqlalchemy>=1.4.0",
"psycopg2-binary>=2.9.0",
"tqdm>=4.64.0",
"click>=8.0.0",
"typing-extensions>=4.3.0",
"cryptography>=37.0.0",
"email-validator>=1.2.0",
"ratelimit>=2.2.1",
"backoff>=2.2.1",
"Pillow>=9.0.0",
"scipy>=1.9.0",
"statsmodels>=0.13.0",
"ta>=0.10.2",
"black>=22.0.0",
"flake8>=5.0.0",
"isort>=5.10.0",
"python-telegram-bot>=20.0",
"dotenv>=0.9.9",
"keras>=3.11.2",
"tensorflow>=2.20.0",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"