-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
56 lines (50 loc) · 922 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
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "kollector"
version = "0.1.0"
description = "Collect orderbook data from crypto exchanges and publish as GRPC"
authors = ["Luca <luca@quantmind.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.1"
click = "^8.1.3"
sortedcontainers = "^2.4.0"
rich = "^12.4.4"
numpy = "^1.22.4"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
flake8 = "black"
black = "^22.3.0"
isort = "^5.10.1"
mypy = "^0.961"
pytest-asyncio = "^0.18.3"
aioresponses = "^0.7.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
exclude = '''
(
/(
\.eggs
| \.git
| \.github
| \.husky
| \.vscode
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| \.gitsubmodules
| common
| devops
| dist
| gateways
| node_modules
| service
| target
| web
)/
)
'''