-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
79 lines (72 loc) · 1.96 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = [
# First version of setuptools to support pyproject.toml configuration
"setuptools>=61.0.0",
"wheel",
"setuptools-rust>=1.7.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "zkpytoolkit"
version = "0.1.0"
authors = [
{name = "Lorenzo Rota", email = "[email protected]"}
]
description = "Zero-knowledge proof toolkit for verifiable computing."
readme = "README.md"
license = {text = "Apache-2.0 OR MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
'Operating System :: Microsoft :: Windows',
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security :: Cryptography",
]
requires-python = ">=3.10"
dependencies = [
# Must be kept in sync with `build-system.requires`
"mpyc >=0.9",
"gmpy2 >= 2.0",
]
#[project.urls]
#homepage = "tba"
#documentation = "tba"
#source = "tba"
#issues = "tba"
#changelog = "tba"
[tool.setuptools]
zip-safe = false
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["zkpytoolkit*"]
[[tool.setuptools-rust.ext-modules]]
target = "zkpytoolkit.hazmat.bindings._rust"
path = "src/rust/Cargo.toml"
py-limited-api = true
rust-version = ">=1.63.0"
[tool.mypy]
show_error_codes = true
check_untyped_defs = true
no_implicit_reexport = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true
strict_equality = true
# [tool.check-sdist]
# git-only = [
# "vectors/*",
# "release.py",
# "ci-constraints-requirements.txt",
# ".gitattributes",
# ".gitignore",
# ]