-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (44 loc) · 1.29 KB
/
pyproject.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nada_dsl"
version = "0.7.1"
description = "Nillion Nada DSL to create Nillion MPC programs."
requires-python = ">=3.10"
readme = "README.pyproject.md"
dependencies = [
"asttokens~=2.4",
"richreports~=0.2",
"parsial~=0.1",
"sortedcontainers~=2.4",
"typing_extensions~=4.12.2",
]
classifiers = ["License :: OSI Approved :: Apache Software License"]
license = { file = "LICENSE" }
[project.optional-dependencies]
docs = ["toml~=0.10.2", "sphinx>=5,<9", "sphinx-rtd-theme>=1.0,<3.1", "sphinx-autoapi~=3.3.2"]
test = ["pytest>=7.4,<9.0", "pytest-cov>=4,<7"]
lint = ["pylint>=2.17,<3.4"]
[tool.setuptools]
packages = ["nada_dsl", "nada_dsl.audit", "nada_dsl.future", "nada_dsl.nada_types"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=docs --cov=nada_dsl --cov-report term-missing"
[tool.uv]
dev-dependencies = [
"toml~=0.10.2",
"sphinx>=5,<9",
"sphinx-rtd-theme>=1.0,<3.1",
"sphinx-autoapi~=3.3.2",
"pytest>=7.4,<9.0",
"pytest-cov>=4,<7",
"pylint>=2.17,<3.4",
"nada-mir-proto[dev]",
"tomli",
"requests",
"typing_extensions~=4.12.2",
]
[tool.uv.sources]
nada-mir-proto = { workspace = true }
[tool.uv.workspace]
members = ["nada_mir"]