-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 823 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
32
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "private_billings"
version = "0.1.0"
authors = [
{ name="Erik Takke", email="erik.takke@3milabs.tech" },
]
description = "Exhange data to compute peer-to-peer trading bills in a privacy preserving fashion."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Unix",
]
dependencies = [
"numpy",
"openfhe",
"pybind11",
"pytest",
"cryptography",
"pyzmq",
]
[project.urls]
Homepage = "https://github.com/3MI-Labs/private-billings"
Issues = "https://github.com/3MI-Labs/private-billings/issues"
[tool.pytest.ini_options]
pythonpath = [
"."
]