-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.34 KB
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
[project]
name = "vc-isomer"
version = "0.1.0"
description = "W3C isomer services and tooling for vLEI VRD credentials"
readme = "README.md"
requires-python = ">=3.12.6,<3.14"
license = { text = "Apache-2.0" }
authors = [
{ name = "Kent Bull", email = "kent@kentbull.com" }
]
keywords = ["keri", "vlei", "acdc", "w3c", "vc-jwt", "did:webs"]
dependencies = [
"falcon>=4.0.2",
"hio==0.6.14",
"keri>=1.2.13,<2",
"PyLD>=2.0.4,<3",
]
[dependency-groups]
dev = [
"pytest>=8.4,<9",
]
test = [
"jsonschema>=4.0,<5",
"mockito>=1.5,<2",
"pytest>=8.4,<9",
]
live = [
"did-webs-resolver>=0.3.5,<0.4",
"vlei>=1.0.2,<2",
]
[project.scripts]
isomer = "vc_isomer.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
default-groups = ["dev", "test", "live"]
[tool.uv.sources]
keri = { git = "https://github.com/WebOfTrust/keripy.git", rev = "cbbf700fa8091587b96b5475c5f50d1d8bf3ca40" }
"did-webs-resolver" = { git = "https://github.com/GLEIF-IT/did-webs-resolver.git", rev = "be1679f5629ca4a145db456cc79219d837ae3d2c" }
vlei = { git = "https://github.com/WebOfTrust/vLEI.git", rev = "f514b9431c5f965b5f7f64a8693e19df2f181564" }
[tool.hatch.build.targets.wheel]
packages = ["src/vc_isomer"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q"