-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
50 lines (45 loc) · 1.27 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
[tool.poetry]
name = "askar-tools"
version = "0.1.0"
description = "Tools for managing Aries Askar wallets"
authors = [
"Andrew Whitehead <[email protected]>",
"Adam Burdett <[email protected]>",
"Char Howland <[email protected]>",
"Daniel Bluhm <[email protected]>",
"Jamie Hale <[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/hyperledger/aries-acapy-tools.git"
[tool.poetry.dependencies]
python = "^3.10"
aiosqlite = "~=0.17"
aries-askar = "~=0.3"
asyncpg = "~=0.22"
base58 = "~=1.0"
cbor2 = "~=5.2"
msgpack = "~=1.0"
PyNaCl = "~=1.4"
pydantic = "^2.8.2"
[tool.poetry.group.dev.dependencies]
black = "<24.4.0"
flake8 = "<6.0.0"
pytest = "<7.5.0"
pytest-asyncio = "<0.20.3"
pre-commit = "<2.21.0"
acapy-controller = {git = "https://github.com/indicio-tech/acapy-minimal-example.git", rev = "main"}
docker = "7.1.0"
[tool.poetry.scripts]
askar-upgrade = "acapy_wallet_upgrade.__main__:entrypoint"
askar-tools = "askar_tools.__main__:entrypoint"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = ["e2e"]