-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.42 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[tool.uv]
# Do not build/install the current project when `uv run` / `uv sync` is invoked.
package = false
[tool.uv.pip]
# uv will search this directory for wheels when installing/upgrading
find-links = ["./target/wheels"]
[project]
name = "PyR0"
version = "0.8.0"
authors = [
{ name = "Weikeng Chen", email = "weikeng.chen@l2iterative.com" }
]
description = "A Python wrapper for RISC Zero prover"
readme = "README.md"
requires-python = ">=3.8.3"
dependencies = [
"borsh-construct>=0.1.0",
"cbor2>=5.0.0",
"dask",
"distributed",
]
classifiers = [
"Environment :: GPU",
"Programming Language :: Rust",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography"
]
[project.urls]
Homepage = "https://github.com/l2iterative/r0prover-python/"
[tool.maturin]
python-source = "src"
module-name = "pyr0._rust"
features = ["pyo3/extension-module"]
include = ["src/pyr0/*.pyi"]
[dependency-groups]
dev = [
"maturin>=1.9.2",
]