-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 989 Bytes
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "zksnake"
dependencies = [
"joblib>=1.4.0",
]
requires-python = ">=3.9"
authors = [
{name = "Merricx", email = "[email protected]"},
]
maintainers = [
{name = "Merricx", email = "[email protected]"},
]
description = "zkSNARKs in Python"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["cryptography", "zksnark", "zkp", "r1cs", "zk-snarks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Security :: Cryptography"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest>=8.2.0"]
[project.urls]
Homepage = "https://github.com/merricx/zksnake"
Repository = "https://github.com/merricx/zksnake.git"
"Bug Tracker" = "https://github.com/merricx/zksnake/issues"
[tool.maturin]
python-source = "python"
module-name = "zksnake._algebra"
features = ["pyo3/extension-module"]