-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.3 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
[tool.poetry]
name = "TradingBot"
version = "2.0.0"
description = "Autonomous market trader based on custom strategies"
authors = ["Alberto Cardellini"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ilcardella/TradingBot"
documentation = "https://tradingbot.readthedocs.io/en/latest"
packages = [
{ include = "tradingbot" }
]
include = ["config/trading_bot.toml"]
[tool.poetry.dependencies]
python = "^3.8"
alpha-vantage = "^2.3.1"
govuk-bank-holidays = "^0.15"
pytz = "^2024.2"
requests = "^2.31.0"
yfinance = "^0.1.90"
toml = "^0.10.2"
pandas = "^1.5.2"
scipy = "^1.7.3"
[tool.poetry.scripts]
trading_bot = 'tradingbot:main'
[tool.poetry.group.dev.dependencies]
sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.0.0"
requests-mock = "^1.8.0"
pytest = "^7.2.0"
black = "^22.10.0"
flake8 = "^5.0.4"
isort = "^5.7.0"
mypy = "^1.14"
types-toml = "^0.10.8.20240310"
types-pytz = "^2024.2.0.20241221"
types-requests = "^2.28.11.5"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output=3
include_trailing_comma="True"
force_grid_wrap=0
use_parentheses="True"
line_length=88
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"