-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.21 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
[tool.poetry]
name = "TradingMate"
version = "2.2.0"
description = "Trading portfolio and real time stock price monitor"
authors = ["Alberto Cardellini"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ilcardella/TradingMate"
documentation = "https://tradingmate.readthedocs.io/en/latest"
packages = [
{ include = "tradingmate" }
]
include = ["config/config.json", "data/trading_log.json"]
[tool.poetry.dependencies]
python = "^3.7.1"
alpha_vantage = "^2.3.1"
yfinance = "^0.1.74"
lxml = "^4.9.1"
pygtail = "^0.12.0"
[tool.poetry.dev-dependencies]
sphinx = "^4.3.2"
sphinx-rtd-theme = "^1.0.0"
requests-mock = "^1.10.0"
docutils = "^0.17.1"
pytest = "^7.1.2"
black = {version = "^22.8", allow-prereleases = true}
isort = "^5.10.1"
mypy = "^0.931"
flake8 = "^5.0.4"
[tool.poetry.scripts]
trading_mate = 'tradingmate:main'
[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"