mirror of
https://github.com/privacy-scaling-explorations/chiquito.git
synced 2026-01-09 14:08:03 -05:00
Resolve #82 - Add `scr/python.rs` contains Python Module - `frontend/python/chiquito` is home for python-source - dependencies = ["py_ecc"] included in `pyproject.toml` so users don't have to `pip install py_ecc` - add `fibonacci.py` to examples
22 lines
490 B
TOML
22 lines
490 B
TOML
|
|
[build-system]
|
|
requires = ["maturin>=1.1,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "chiquito"
|
|
dependencies = ["py_ecc"]
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
|
|
|
|
[tool.maturin]
|
|
bindings = 'pyo3'
|
|
features = ["pyo3/extension-module"]
|
|
python-source = "src/frontend/python"
|
|
module-name = "chiquito.rust_chiquito"
|