-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 690 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# stdlib
from pathlib import Path
# third party
from setuptools import find_packages
from setuptools import setup
setup_dir = Path(__file__).resolve().parent
setup(
name="sycret",
version="0.2.8",
author="Pierre Tholoniat",
author_email="pierre@tholoniat.com",
url="https://github.com/OpenMined/sycret",
description="Function Secret Sharing library for Python and Rust with hardware acceleration",
long_description=Path(setup_dir, "README.md").open().read(),
long_description_content_type="text/markdown",
license="Apache-2.0",
python_requires=">=3.6",
install_requires=["numpy>=1", "cffi>=1", "pycparser>=2"],
packages=find_packages(),
)