mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
44 lines
844 B
TOML
44 lines
844 B
TOML
[tool.poetry]
|
|
name = "hdk"
|
|
version = "0.1.0"
|
|
description = "Zama Homomorphic Development frameworK"
|
|
authors = ["Arthur Meyre <arthur.meyre@zama.ai>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.7,<3.10"
|
|
networkx = "^2.6.1"
|
|
matplotlib = "^3.4.2"
|
|
numpy = "^1.21.1"
|
|
pygraphviz = "^1.7"
|
|
Pillow = "^8.3.1"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
isort = "^5.9.2"
|
|
black = "21.7b0"
|
|
pylint = "^2.9.3"
|
|
pytest = "^6.2.4"
|
|
pytest-cov = "^2.12.1"
|
|
pytest-benchmark = "^3.4.1"
|
|
diff-cover = "^6.2.0"
|
|
mypy = "^0.910"
|
|
pydocstyle = "^6.1.1"
|
|
jupyter = "^1.0.0"
|
|
nbmake = "^0.5"
|
|
flake8 = "^3.9.2"
|
|
flake8-bugbear = "^21.4.3"
|
|
Sphinx = "^4.1.1"
|
|
sphinx-rtd-theme = "^0.5.2"
|
|
myst-parser = "^0.15.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"error",
|
|
"ignore::UserWarning",
|
|
]
|
|
|
|
|