-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.39 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
[tool.poetry]
name = "eudi-wallet"
version = "0.0.1"
description = "EUDI Wallet SDK"
authors = ["George J Padayatti <george.padayatti@igrant.io>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.10.1,<3.11"
jwcrypto = "^1.3.1"
py-multibase = "^1.0.3"
coincurve = "^17.0.0"
aiohttp = "^3.8.1"
sslcrypto = "^5.3"
rich = "^12.5.1"
jsonschema = "^4.14.0"
base58 = "1.0.3"
eth-keys = "^0.4.0"
PyJWT = "^2.4.0"
pysha3 = "^1.0.2"
multiformats = "^0.2.1"
cryptography = "^41.0.1"
pyngrok = "^6.0.0"
click = "^8.1.3"
dataclasses-json = "^0.5.9"
sqlalchemy = "^2.0.19"
pytz = "^2024.1"
pydantic = "^2.7.1"
aiokafka = "^0.8.1"
tenacity = "^8.2.2"
httpx = "^0.24.1"
mnemonic = "^0.20"
psycopg2-binary = "^2.9.7"
jsonpath-ng = "^1.6.1"
setuptools = "^68.2.0"
web3 = "^6.9.0"
pip = "^23.2.1"
sdjwt = {git = "https://github.com/decentralised-dataexchange/sdjwt", rev = "2024.5.2"}
alembic = "^1.13.1"
[tool.poetry.dev-dependencies]
jupyter = "^1.0.0"
notebook = "^6.4.12"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.7.0"
debugpy = "^1.6.7"
[tool.poetry.scripts]
start-server = 'eudi_wallet.ebsi.entry_points.server.start:main'
start-consumer = 'eudi_wallet.ebsi.entry_points.kafka.consumer:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pyright.report]
"reportCallExpressionNotUsedInTypeExpression" = false