-
Notifications
You must be signed in to change notification settings - Fork 512
/
pyproject.toml
159 lines (136 loc) · 3.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[tool.poetry]
name = "acapy_agent"
version = "1.1.0"
description = "(ACA-Py) A Cloud Agent Python is a foundation for building decentralized identity applications and services running in non-mobile environments. "
authors = []
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "acapy_agent" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
repository = "https://github.com/openwallet-foundation/acapy"
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "~3.10.5"
aiohttp-apispec-acapy = "~3.0.2"
aiohttp-cors = "~0.7.0"
apispec = "^6.6.0"
async-timeout = "~4.0.2"
base58 = "~2.1.0"
ConfigArgParse = "~1.7"
deepmerge = "~0.3.0"
ecdsa = "~0.19.0"
jsonpath-ng = "1.7.0"
Markdown = "~3.7"
markupsafe = "2.1.5"
marshmallow = "~3.23.1"
nest_asyncio = "~1.6.0"
packaging = "~23.2"
portalocker = "~2.10.1"
prompt_toolkit = ">=2.0.9,<2.1.0"
pydid = "^0.5.1"
pyjwt = "~2.9.0"
pyld = "^2.0.4"
pynacl = "~1.5.0"
python-dateutil = "~2.8.1"
python-json-logger = "~2.0.7"
pyyaml = "~6.0.2"
qrcode = { version = ">=6.1,<7.0", extras = ["pil"] }
requests = "~2.32.3"
rlp = "4.0.1"
unflatten = "~0.2"
sd-jwt = "^0.10.3"
did-peer-2 = "^0.1.2"
did-peer-4 = "^0.1.4"
uuid_utils = "^0.9.0"
# askar
aries-askar = { version = "~0.3.2", optional = true }
indy-credx = { version = "~1.1.1", optional = true }
indy-vdr = { version = "~0.4.0", optional = true }
anoncreds = { version = "0.2.0", optional = true }
# bbs
ursa-bbs-signatures = { version = "~1.0.1", optional = true }
# didcommv2
didcomm-messaging = { version = "^0.1.1a0", optional = true }
canonicaljson = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "~3.8.0"
# Sync with version in .pre-commit-config.yaml
ruff = "0.7.2"
sphinx = "^5.3.0"
sphinx-rtd-theme = ">=0.4.3"
pydevd = "1.5.1"
pydevd-pycharm = "~193.7288.30"
# testing
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
pytest-cov = "^5.0.0"
pytest-ruff = "^0.4.1"
pytest-xdist = "^3.6.1"
debugpy = "^1.8.6"
[tool.poetry.extras]
askar = ["aries-askar", "indy-credx", "indy-vdr", "anoncreds"]
bbs = ["ursa-bbs-signatures"]
didcommv2 = ["didcomm-messaging"]
[tool.poetry.scripts]
aca-py = "acapy_agent.__main__:script_main"
[tool.ruff]
lint.select = ["B006", "C", "D", "E", "F"]
lint.ignore = [
# Google Python Doc Style
"D203",
"D204",
"D213",
"D215",
"D400",
"D401",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
"D202", # Allow blank line after docstring
"D104", # Don't require docstring in public package
# Things that we should fix, but are too much work right now
"C901",
]
include = ["acapy_agent/**/*.py"]
line-length = 90
[tool.ruff.lint.per-file-ignores]
"**/{tests}/*" = ["B006", "D", "E501", "F841"]
[tool.pytest.ini_options]
testpaths = "acapy_agent"
addopts = """
--quiet --junitxml=./test-reports/junit.xml
--cov-config .coveragerc --cov=acapy_agent --cov-report term --cov-report xml
--ruff
"""
markers = [
"anoncreds: Tests specifically relating to AnonCreds support",
"askar: Tests specifically relating to Aries-Askar support",
"indy: Tests specifically relating to Hyperledger Indy SDK support",
"indy_credx: Tests specifically relating to Indy-Credx support",
"indy_vdr: Tests specifically relating to Indy-VDR support",
"ursa_bbs_signatures: Tests specificaly relating to BBS Signatures support",
"postgres: Tests relating to the postgres storage plugin for Indy",
]
junit_family = "xunit1"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "module"
[tool.coverage.run]
omit = ["*/tests/*", "demo/*", "docker/*", "docs/*", "scripts/*"]
data_file = "test-reports/.coverage"
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "@abstract"]
precision = 2
skip_covered = true
show_missing = true
[tool.coverage.xml]
output = "test-reports/coverage.xml"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"