-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.28 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
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39']
include = '\.pyi?$'
[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true
[tool.mypy]
ignore_missing_imports = true
[tool.poetry]
name = "tax_loss"
version = "0.1.0"
description = "n/a"
authors = ["Trevor Bernard <[email protected]>"]
[tool.poetry.scripts]
tax_loss = "tax_loss.cli:main"
add_trades_to_db = "scripts.add_trades_to_db:main"
download_data = "scripts.download_data:main"
[tool.poetry.dependencies]
python = "~3.9"
scipy = "^1.7.3"
click = "^8.1.3"
munch = "^2.5.0"
PyYAML = "^6.0"
pandas = "^1.4.3"
numpy = "^1.23.2"
tabulate = "^0.8.10"
fastparquet = "^0.8.2"
yfinance = "^0.1.74"
requests = "^2.28.1"
bokeh = {version = "^2.4.3", optional = true}
jupyter = {version = "^1.0.0", optional = true}
[tool.poetry.extras]
jupyter = ["jupyter", "bokeh"]
[tool.poetry.dev-dependencies]
black = "^22.6.0"
isort = "^5.10.1"
flake8 = "^4.0.0"
invoke = "^1.7.1"
mypy = "^0.971"
types-tabulate = "^0.8.11"
types-requests = "^2.28.9"
flake8-mutable = "^1.2.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
requests-mock = "^1.10.0"
freezegun = "^1.2.2"
mock = "^4.0.3"
types-mock = "^4.0.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"