-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.16 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
[tool.poetry]
name = "scriptless_zkp"
version = "0.6.0-dev"
authors = [ "qubits4all <qubits4all@users.noreply.github.com>" ]
maintainers = [ "qubits4all <qubits4all@users.noreply.github.com>" ]
description = 'Scriptless-ZKP - Adaptor & multi-party signatures, zero-knowledge proofs (ZKPs) & "scriptless" scripts'
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
packages = [
{ include = "scriptless_zkp", from = "src/python" }
]
[tool.poetry.urls]
Homepage = "https://github.com/qubits4all/scriptless-zkp"
Repository = "https://github.com/qubits4all/scriptless-zkp.git"
Issues = "https://github.com/qubits4all/scriptless-zkp/issues"
[tool.poetry.dependencies]
python = "^3.12"
attrs = "~23.2.0"
pycryptodomex = "~3.20.0"
libnum = "~1.7.1"
# Transitive dependencies:
certifi = "^2024.7.4"
[poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"