File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 20
20
exec (file .read (), globals_dict ) # pylint: disable=exec-used
21
21
VERSION = globals_dict ['__version__' ]
22
22
23
+ README = (
24
+ 'A Python library that includes implementations of TensorFlow optimizers '
25
+ 'for training machine learning models with differential privacy.'
26
+ )
27
+
23
28
setuptools .setup (
24
29
name = 'tensorflow_privacy' ,
25
30
version = VERSION ,
31
+ description = 'A privacy-focused machine learning framework' ,
32
+ long_description = README ,
33
+ long_description_content_type = 'text/plain' ,
26
34
url = 'https://github.com/tensorflow/privacy' ,
27
35
license = 'Apache-2.0' ,
36
+ packages = setuptools .find_packages (),
28
37
install_requires = [
29
38
'absl-py>=1.0,==1.*' ,
30
39
'attrs>=21.4' ,
43
52
'tensorflow~=2.4' ,
44
53
'tf-models-official~=2.13' ,
45
54
],
46
- packages = setuptools .find_packages (),
47
55
python_requires = '>=3.9.0,<3.12' ,
48
56
)
You can’t perform that action at this time.
0 commit comments