Skip to content

Commit e1eef3c

Browse files
Add a description to the TFP Python package.
PiperOrigin-RevId: 572384355
1 parent 1ecf9e1 commit e1eef3c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,20 @@
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+
2328
setuptools.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',
@@ -43,6 +52,5 @@
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
)

0 commit comments

Comments
 (0)