-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 968 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
[tool.poetry]
name = "flask-web3-cryptocollector"
version = "0.1.0"
description = "collection to Cold Wallet for exchange-service"
authors = ["M.Chupakhin <mchupakhinwork@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
web3 = "^6.19.0"
flask = "^3.0.3"
python-dotenv = "^1.0.1"
redis = "^5.0.4"
aio-pika = "^9.4.1"
flask-socketio = "^5.3.6"
flask-sqlalchemy = "^3.1.1"
flask-migrate = "^4.0.7"
psycopg2-binary = "^2.9.9"
decouple = "^0.0.7"
celery = "^5.4.0"
[tool.poetry.group.dev.dependencies]
jupyterlab-black = "^0.2.1"
black = "^24.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
skip-string-normalization = true
skip-magic-trailing-comma = true