This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

vit / pyproject.toml
640 B 38 lines
1[build-system] 2requires = ["hatchling"] 3build-backend = "hatchling.build" 4 5[project] 6name = "vit" 7version = "0.1.0" 8description = "Minimal DID:PLC genesis op generator + registrar" 9requires-python = ">=3.9" 10dependencies = [ 11 "cryptography", 12 "dag-cbor", 13 "base58", 14 "requests", 15] 16 17[dependency-groups] 18dev = [ 19 "pytest", 20 "ruff", 21] 22 23[project.scripts] 24plc-register = "plc_register:main" 25 26[tool.hatch.build.targets.wheel] 27packages = ["."] 28only-include = ["plc_register.py"] 29 30[tool.ruff] 31line-length = 100 32target-version = "py39" 33 34[tool.ruff.lint] 35select = ["E", "F", "I", "W"] 36 37[tool.pytest.ini_options] 38testpaths = ["test"]