-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.13 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
[tool.poetry]
name = "did-webvh"
version = "0.2.1"
description = "This repository includes Python libraries for working with `did:webvh` (did:web + Verified History) DID documents and the underlying log format."
authors = []
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "did_webvh" }]
[tool.poetry.dependencies]
python = "^3.10"
aiofiles = "^24.1.0"
aiohttp = "^3.10.5"
aries-askar = "^0.3.2"
base58 = "~2.1.0"
jsoncanon = "^0.2.3"
multiformats = "^0.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-asyncio = "^0.24.0"
pytest-cov = "^5.0.0"
ruff = "^0.6.2"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
[tool.ruff]
lint.select = [
"D",
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
line-length = 90
lint.ignore = ["D401", "EM102", "UP007"] #["E203", "E701"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["D103", "D104"]
"test_*.py" = ["D", "E501"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"