-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
46 lines (41 loc) · 1.39 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""Installing with setuptools."""
import setuptools
from setuptools.dist import Distribution
class BinaryDistribution(Distribution):
"""This class is needed in order to create OS specific wheels."""
def has_ext_modules(self):
return True
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tf-seal",
version="0.1.0",
packages=setuptools.find_packages(),
package_data={'tf_seal': []},
python_requires="==3.7.*",
install_requires=[
"numpy >=1.14",
"tf_nightly >=1.14.0, <2",
],
extras_require={
"tf": ["tf_nightly >=1.14.0, <2"],
},
license="Apache License 2.0",
url="https://github.com/tf-encrypted/tf-seal",
description="Bridge between TensorFlow and the Microsoft SEAL homomorphic encryption library.",
long_description=long_description,
long_description_content_type="text/markdown",
author="The TF Encrypted Authors",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
distclass=BinaryDistribution,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security :: Cryptography",
]
)