-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 1023 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 1023 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "prooflink"
version = "1.1.1"
description = "ProofLink SDK — seal and verify cryptographically-chained, Bitcoin-anchored receipts"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "iTechSmart Inc." }]
keywords = ["prooflink", "audit", "receipts", "bitcoin", "opentimestamps", "verifiable"]
# verify()/verify_receipt() use Ed25519 from `cryptography` (the same library
# as the published reference verifier). seal()/verify_chain()/recent()/stats()
# are stdlib-only. Install the [verify] extra (or the base dep) for crypto verify.
dependencies = ["cryptography>=41.0"]
[project.scripts]
prooflink = "prooflink.__main__:main"
[tool.setuptools]
packages = ["prooflink"]
[tool.setuptools.package-data]
prooflink = ["py.typed"]
[project.urls]
Homepage = "https://prooflink.itechsmart.dev"
Repository = "https://github.com/iTechSmartINC/prooflink-sdk"
"Live Ledger" = "https://verify.itechsmart.dev"