-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpyproject.toml
119 lines (112 loc) · 2.56 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tinkoff-investments"
version = "0.2.0-beta59"
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"
cachetools = "^5.2.0"
grpcio = "^1.39.0"
protobuf = "^4.21.6"
python-dateutil = "^2.8.2"
tinkoff = "^0.1.1"
deprecation = "^2.1.0"
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.extras]
all = ["pandas", "numpy", "matplotlib", "mplfinance"]
[tool.poetry.group.bump.dependencies]
PyYAML = "^6.0"
tomlkit = "^0.11.6"
[tool.poetry.group.dev.dependencies]
autoflake = "^1.4"
bandit = "^1.7.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"
grpcio-tools = "^1.39.0"
ipython = "^8.1.1"
isort = "^5.10.1"
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"
requests = "^2.27.1"
ruff = "^0.0.188"
toml-sort = "^0.19.0"
types-cachetools = "^5.2.1"
types-protobuf = "^3.20.4.6"
types-python-dateutil = "^2.8.12"
types-PyYAML = "^6.0.7"
types-requests = "^2.27.7"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.3"
mkdocs-include-markdown-plugin = "^3.9.1"
mkdocs-material = "^8.1.3"
mkdocstrings = { version = "^0.19.0", extras = ["python"] }
termynal = "^0.2.0"
[tool.ruff]
line-length = 88
select = [
"D",
"B",
"C",
"E",
"F",
"Q",
"RUF001",
"T",
"W",
]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D106",
"D107",
"D203",
"D213",
"B008",
"B905",
"Q000",
]
exclude = [
"tinkoff/invest/grpc",
"examples/*",
]