forked from openwallet-foundation/acapy-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (42 loc) · 1.17 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
[tool.poetry]
name = "acapy-wallet-upgrade"
version = "0.1.0"
description = "Migrate ACA-Py from Indy SDK to Aries Askar"
authors = [
"Andrew Whitehead <[email protected]>",
"Adam Burdett <[email protected]>",
"Char Howland <[email protected]>",
"Daniel Bluhm <[email protected]>"
]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
readme = "README.md"
repository = "https://github.com/indicio-tech/acapy-wallet-upgrade"
[tool.poetry.dependencies]
python = "^3.10"
aiosqlite = "~=0.17"
aries-askar = "~=0.2"
asyncpg = "~=0.22"
base58 = "~=1.0"
cbor2 = "~=5.2"
msgpack = "~=1.0"
PyNaCl = "~=1.4"
[tool.poetry.group.dev.dependencies]
black = "<24.4.0"
flake8 = "<6.0.0"
pytest = "<7.2.0"
pytest-asyncio = "<0.20.3"
pre-commit = "<2.21.0"
controller = {git = "https://github.com/indicio-tech/acapy-minimal-example.git", rev = "main"}
docker = "^6.0.1"
[tool.poetry.scripts]
askar-upgrade = "acapy_wallet_upgrade.__main__:entrypoint"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = ["e2e"]