Skip to content

Commit

Permalink
Add a description to the TFP Python package.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 572384355
  • Loading branch information
michaelreneer authored and tensorflower-gardener committed Oct 10, 2023
1 parent 1ecf9e1 commit e1eef3c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,20 @@
exec(file.read(), globals_dict) # pylint: disable=exec-used
VERSION = globals_dict['__version__']

README = (
'A Python library that includes implementations of TensorFlow optimizers '
'for training machine learning models with differential privacy.'
)

setuptools.setup(
name='tensorflow_privacy',
version=VERSION,
description='A privacy-focused machine learning framework',
long_description=README,
long_description_content_type='text/plain',
url='https://github.com/tensorflow/privacy',
license='Apache-2.0',
packages=setuptools.find_packages(),
install_requires=[
'absl-py>=1.0,==1.*',
'attrs>=21.4',
Expand All @@ -43,6 +52,5 @@
'tensorflow~=2.4',
'tf-models-official~=2.13',
],
packages=setuptools.find_packages(),
python_requires='>=3.9.0,<3.12',
)

0 comments on commit e1eef3c

Please sign in to comment.