File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 exec (file .read (), globals_dict ) # pylint: disable=exec-used
2121 VERSION = globals_dict ['__version__' ]
2222
23+ README = (
24+ 'A Python library that includes implementations of TensorFlow optimizers '
25+ 'for training machine learning models with differential privacy.'
26+ )
27+
2328setuptools .setup (
2429 name = 'tensorflow_privacy' ,
2530 version = VERSION ,
31+ description = 'A privacy-focused machine learning framework' ,
32+ long_description = README ,
33+ long_description_content_type = 'text/plain' ,
2634 url = 'https://github.com/tensorflow/privacy' ,
2735 license = 'Apache-2.0' ,
36+ packages = setuptools .find_packages (),
2837 install_requires = [
2938 'absl-py>=1.0,==1.*' ,
3039 'attrs>=21.4' ,
4352 'tensorflow~=2.4' ,
4453 'tf-models-official~=2.13' ,
4554 ],
46- packages = setuptools .find_packages (),
4755 python_requires = '>=3.9.0,<3.12' ,
4856)
You can’t perform that action at this time.
0 commit comments