forked from Veriphi-labs/veriphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 843 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 = ["maturin>=1.6,<2"]
build-backend = "maturin"
[project]
name = "veriphi-core"
version = "0.1.0"
description = "Python bindings for veriphi-core"
readme = "README.md"
authors = [{ name = "Veriphi Labs LTD" }]
license = "AGPL-3.0"
requires-python = ">=3.9"
dependencies = [
"numpy==2.3.2",
"pycryptodome==3.23.0",
"pytest==8.4.1"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
# maturin config
[tool.maturin]
bindings = "pyo3"
abi3 = true
cargo-manifest-path = "rust/veriphi-core-py/Cargo.toml"
python-source = "python"
module-name = "veriphi_core.veriphi_core_py"
[tool.pytest.ini_options]
testpaths = ["python/veriphi_core/tests"]
addopts = "-q"