forked from Tinkoff/invest-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (74 loc) · 1.99 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tinkoff-investments"
version = "0.2.0-beta29"
description = ""
authors = ["Danil Akhtarov <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Tinkoff/invest-python"
homepage = "https://github.com/Tinkoff/invest-python"
packages = [
{ include = "tinkoff" },
]
exclude = ["tinkoff/__init__.py"]
[tool.poetry.dependencies]
python = "^3.8"
grpcio = "^1.39.0"
protobuf = "^3.19.3"
python-dateutil = "^2.8.2"
tinkoff = "^0.1.1"
matplotlib = { version = "^3.5.1", optional = true}
mplfinance = { version = "^0.12.8-beta.9", optional = true}
numpy = { version = "^1.22.2", optional = true}
pandas = { version = "^1.4.0", optional = true}
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
black = {extras = ["jupyter"], version = "^22.1.0"}
codecov = "^2.1.12"
flake8 = "^4.0.1"
flake8-annotations-complexity = "^0.0.6"
flake8-bandit = "^3"
flake8-breakpoint = "^1.1.0"
flake8-bugbear = "^21.11.29"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.7.0"
flake8-eradicate = "^1.2.0"
flake8-if-expr = "^1.0.4"
flake8-isort = "^4.1.1"
flake8-logging-format = "^0.6.0"
flake8-print = "^4.0.0"
flake8-pytest = "^1.3"
flake8-pytest-style = "^1.6.0"
flake8-requirements = "^1.5.1"
flake8-return = "^1.1.3"
git-changelog = "^0.5.0"
gitlint = "^0.17.0"
grpcio-tools = "^1.39.0"
ipython = "^8.1.1"
isort = "^5.10.1"
jinja2 = "=3.0.3"
mkdocs = "^1.3"
mkdocs-material = "^8.1.3"
mkdocstrings = "^0.17.0"
mypy = "^0.930"
mypy-protobuf = "^3.1.0"
pylint = "^2.12.2"
pytest = "^6.2.5"
pytest-asyncio = "^0.17.2"
pytest-cov = "^3.0.0"
pytest-deadfixtures = "^2.2.1"
pytest-freezegun = "^0.4.2"
pytest-mock = "^3.6.1"
PyYAML = "^6.0"
requests = "^2.27.1"
termynal = "^0.2.0"
toml-sort = "^0.19.0"
types-protobuf = "^3.18.2"
types-python-dateutil = "^2.8.12"
types-PyYAML = "^6.0.7"
types-requests = "^2.27.7"
[tool.poetry.extras]
all = ["pandas", "numpy", "matplotlib", "mplfinance"]