Files
chiquito/pyproject.toml
trangnv ecc80f1706 Bring (py)Chiquito in (#86)
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
2023-08-21 07:48:22 +00:00

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"