-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 883 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 883 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
31
32
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "intentproof"
version = "0.2.1"
description = "Python SDK for signed IntentProof execution events"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [{name = "IntentProof"}]
keywords = ["intentproof", "provenance", "sdk"]
dependencies = [
"cryptography>=42.0.0",
"ulid-py>=1.1.0",
]
[project.urls]
Homepage = "https://intentproof.io"
Repository = "https://github.com/IntentProof/intentproof-sdk-python"
Documentation = "https://github.com/IntentProof/intentproof-sdk-python#readme"
Issues = "https://github.com/IntentProof/intentproof-sdk-python/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]