2018-12-27 00:28:20 -07:00
|
|
|
# Copyright 2018, The TensorFlow Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2019-08-23 10:21:00 -06:00
|
|
|
"""TensorFlow Privacy library setup file for pip."""
|
2018-12-27 00:28:20 -07:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
2019-08-23 10:21:00 -06:00
|
|
|
setup(name='tensorflow_privacy',
|
2019-10-30 20:04:47 -06:00
|
|
|
version='0.2.2',
|
2018-12-27 00:28:20 -07:00
|
|
|
url='https://github.com/tensorflow/privacy',
|
|
|
|
license='Apache-2.0',
|
2019-01-03 14:42:00 -07:00
|
|
|
install_requires=[
|
|
|
|
'scipy>=0.17',
|
|
|
|
'mpmath', # used in tests only
|
|
|
|
],
|
2018-12-27 00:28:20 -07:00
|
|
|
# Explicit dependence on TensorFlow is not supported.
|
|
|
|
# See https://github.com/tensorflow/tensorflow/issues/7166
|
|
|
|
extras_require={
|
2019-01-03 14:42:00 -07:00
|
|
|
'tf': ['tensorflow>=1.0.0'],
|
|
|
|
'tf_gpu': ['tensorflow-gpu>=1.0.0'],
|
2018-12-27 00:28:20 -07:00
|
|
|
},
|
|
|
|
packages=find_packages())
|