-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
89 lines (82 loc) · 2.03 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "AINewsTracker"
version = "0.1.2"
description = "A web application for backtesting the influence of financial news on the stock market using AI."
authors = ["Antoine Boucher <antoine.boucher012@gmail.com>", "Mohamed Ilias <Mohamed.ilias.1@ens.etsmtl.ca>", "Makhlouf Hennine <makhlouf.hennine.1@ens.etsmtl.ca>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10.0, !=3.11.*"
fastapi = "^0.81.0"
pydantic = "^1.10.8"
python-multipart = "^0.0.6"
httpx = "^0.23.3"
pymongo = "^4.3.3"
python-dotenv = "^0.19.2"
uvicorn = {version = "^0.18.3", extras = ["standard"]}
anyio = "^3.7.0"
aioredis = "^2.0.0"
configparser = "^5.3.0"
contractions = "^0.1.73"
fastapi_cache2 = "^0.2.1"
fastapi_health = "^0.4.0"
matplotlib = "^3.5.1"
openpyxl = "^3.1.1"
pandas = "^1.5.3"
pandas-ta = "^0.3.14b"
prometheus-fastapi-instrumentator = "^5.9.1"
redis = "^4.5.1"
rich = "*"
structlog = "^23.1.0"
prometheus-client = "^0.17.0"
aiofiles = "^23.1.0"
types-aiofiles = "^23.1.0.4"
slowapi = "^0.1.8"
asyncio = "^3.4.3"
jose = "^1.0.0"
pyjwt = "^2.7.0"
python-jose = "^3.3.0"
passlib = "^1.7.4"
transformers = "^4.30.1"
torch = "^2.0.1"
motor = "^3.1.2"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
feedparser = "^6.0.10"
types-redis = "^4.5.5.2"
spacy = "^3.5.3"
finnhub-python = "^2.4.18"
[tool.poetry.dev-dependencies]
pre-commit = "^3.0.4"
black = "^23.1.0"
pycln = "^2.1.3"
isort = "^5.12.0"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.0"
sphinx = "^4.3.2"
coverage = "^6.3.2"
mypy = "^0.930"
bandit = "^1.7.0"
flake8 = "^4.0.1"
mkdocs = "^1.4.2"
mkdocs-material = "^9.1.5"
mkdocstrings = "^0.22.0"
mkdocs-build-plantuml-plugin = "^1.7.4"
[tool.poetry.scripts]
start = "uvicorn app.main:app --reload"
ls = "ls -l"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.pycln]
all = true
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true