-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 987 Bytes
/
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
[tool.poetry]
name = "Portfolio Manager"
version = "0.0.1"
authors = ["João Francisco Santos"
]
description = "Inspect and manage an asset portfolio via brokerage APIs"
readme = "README.md"
packages = [{include = "portfolio_mgmt"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
flake8 = "^4.0.1"
pytest = "^7.1.1"
[tool.black]
line-length = 121
target-version = ["py39"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
indent = 4
combine_as_imports = true
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.27.1"
colorama = "^0.4.6"
cryptography = ">=39.0.0"
[tool.pytest.ini_options]
testpaths = ["test"]
log_cli = "true"
log_level = "DEBUG"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"