-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 765 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
34
[tool.poetry]
name = "quantex"
version = "0.1.0"
description = "Powerful trading bot, based on ChatGPT sentiment analysis of news headlines."
authors = ["Joachim Hodana <stylek777@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.1"
undetected-chromedriver = "^3.4.5"
fastapi = "^0.100.0"
pyyaml = "^6.0"
sqlalchemy = "^2.0.18"
yarl = "^1.9.2"
uvicorn = "^0.22.0"
httpx = "^0.24.1"
alembic = "^1.11.1"
pydantic-settings = "^2.0.1"
asyncpg = "^0.28.0"
psycopg2-binary = "^2.9.6"
selenium = "^4.10.0"
python-dotenv = "^1.0.0"
pydantic = "^2.0.3"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
mypy = "^1.4.1"
black = "^23.7.0"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"