forked from capeprivacy/tf-trusted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (42 loc) · 1.34 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
import setuptools
setuptools.setup(
name="tf-trusted",
version="0.1.0",
description="TF-Trusted provides a way to run models inside a Trusted Execution Environment",
long_description=open("README.md").read(),
url="https://github.com/dropoutlabs/tf-trusted",
author="Justin Patriquin",
author_email="[email protected]",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
],
keywords=(
"ai "
"artificial intelligence "
"privacy "
"cryptography "
"machine learning "
),
install_requires=[
"numpy"
],
packages=setuptools.find_packages(),
zip_safe=True,
license="Apache License 2.0",
scripts=['tf_trusted_custom_op/model_run.py'],
package_data={
'': ['*.so'],
}
)