mirror of
https://github.com/0xPARC/plonkathon.git
synced 2026-01-08 21:28:02 -05:00
23 lines
578 B
TOML
23 lines
578 B
TOML
[tool.poetry]
|
|
name = "plonkathon"
|
|
version = "0.1.0"
|
|
description = "A simple Python implementation of PLONK adapted from py_plonk"
|
|
authors = ["0xPARC / Vitalik Buterin"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
py-ecc = "^6.0.0"
|
|
merlin = {git = "https://github.com/nalinbhardwaj/curdleproofs.pie", rev = "master", subdirectory = "merlin"}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
mypy = "^0.991"
|
|
black = "^22.12.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.mypy]
|
|
explicit_package_bases = true |