-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 867 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
[tool.poetry]
name = "nada-numpy"
version = "0.6.0"
description = "Nada-Numpy is a Python library designed for algebraic operations on NumPy-like array objects on top of Nada DSL and Nillion Network."
authors = ["José Cabrero-Holgueras <jose.cabrero@nillion.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.4"
nada-dsl = "^0.7.1"
py-nillion-client = "^0.6.0"
nillion-python-helpers = "^0.3.0"
black = {version="24.8.0", optional=true}
isort = {version="^5.13.2", optional=true}
scikit-learn = {version="^1.5.1", optional=true}
nada-test = "^0.6.0"
nillion-client = "^0.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pylint = "^3.2.3"
mypy = "^1.11.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
linter = ["black", "isort"]
examples = ["scikit-learn"]