-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.1 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
[tool.poetry]
name = "didcomm"
version = "0.3.3"
description = "Basic DIDComm v2 support in python"
authors = ["SICPA <DLCHOpenSourceContrib@sicpa.com>", "Daniel Bluhm <dbluhm@pm.me>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/sicpa-dlab/didcomm-python"
repository = "https://github.com/sicpa-dlab/didcomm-python"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
]
include = [
"LICENSE",
"README.md"
]
[tool.poetry.dependencies]
python = "^3.7"
Authlib = "^1.1.0"
pycryptodomex = "~=3.10"
base58 = "~=2.1"
varint = "~=1.0.2"
attrs = "~=22.2"
packaging = "~=23.0"
pydid = "~=0.3.7"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-asyncio = "^0.20.0"
pytest-xdist = "^3.2.0"
flake8 = "^5.0.4"
black = "^23.1.0"
pytest-mock = "^3.10.0"
mock = "^5.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
mock_use_standalone_module = true
addopts = "-n auto"