-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
75 lines (70 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "liberate-fhe"
version = "v0.9.0"
description = "A Fully Homomorphic Encryption (FHE) library for bridging the gap between theory and practice with a focus on performance and accuracy"
authors = [
"Juwhan Kim <[email protected]>",
"Hanyul Ryu <[email protected]>"
]
maintainers = [
"Juwhan Kim <[email protected]>",
"Hanyul Ryu <[email protected]>"
]
readme = [
"README.md"
]
homepage = "https://desilo.ai/"
documentation = "https://docs.desilo.ai/liberate-fhe/"
repository = "https://github.com/desilo/liberate"
license = "BSD-3-Clause-Clear"
keywords = [
"DESILO", "python", "cryptohraphy", "privacy", "encryption", "cuda",
"homoomrphic encryption", "homomorphic encryption library", "fhe", "gpu accelerated", "liberate"
]
classifiers = [
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries"
]
packages = [
{ include = "liberate", from = "src" },
]
exclude = [
"src/liberate/csprng/setup.py",
"src/liberate/csprng/*.cu",
"src/liberate/csprng/*.cpp",
"src/liberate/csprng/*.h",
"src/liberate/ntt/*.cpp",
"src/liberate/ntt/*.cu",
"src/liberate/ntt/setup.py"
]
include = [
"src/liberate/csprng/*.so",
"src/liberate/ntt/*.so"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
numpy = "^1.23.5"
mpmath = "^1.3.0"
scipy = "^1.10.1"
matplotlib = "^3.7.1"
joblib = "^1.2.0"
torch = "^2.0.0"
tqdm = "^4.66.1"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
devtools = "^0.10.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pytest = "^7.2.1"
pytest-xdist = "^3.2.0"
[build-system]
requires = ["poetry-core", "torch", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py310']
line-length = 79
[tool.isort]
profile = "black"
line_length = 79