forked from facebookresearch/fbpcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 858 Bytes
/
setup.py
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
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
install_requires = [
"boto3==1.11.11",
"dataclasses-json==0.5.2",
"pyyaml==5.4.1",
"tqdm==4.55.1",
]
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="fbpcs",
version="0.1.0",
description="Facebook Private Computation Service",
author="Facebook",
author_email="[email protected]",
url="https://github.com/facebookresearch/FBPCS",
install_requires=install_requires,
packages=find_packages(),
long_description_content_type="text/markdown",
long_description=long_description,
python_requires=">=3.8",
)