From 4615e7f3f36b847c8875505e56ca806e094b08ce Mon Sep 17 00:00:00 2001 From: Robert Clark Date: Thu, 18 Feb 2021 13:30:30 -0600 Subject: [PATCH 1/3] Update the license indicator The license indicator in the setup.py file was not properly set according to Python guidelines. Signed-Off-By: Robert Clark --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec618a3..88db75d 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ including JPEGs, PNGs, BMPs, RecordIO, and TFRecord files''', long_description=long_description, packages=find_packages(include=['imagine'], exclude=['tests']), - license='Apache v2.0', + license='Apache 2.0', python_requires='>=3.6', entry_points={ 'console_scripts': ['imagine=imagine:_main'] From 55aa2e91e86148867c0298cd9e85bc18093aed6d Mon Sep 17 00:00:00 2001 From: Robert Clark Date: Thu, 18 Feb 2021 13:48:53 -0600 Subject: [PATCH 2/3] Add author information to setup The setup.py file was missing information on the authors, marking the wheel metadata with warnings. Signed-Off-By: Robert Clark --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 88db75d..f433139 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,8 @@ setup( name='nvidia-imageinary', + author='NVIDIA Corporation', + author_email='roclark@nvidia.com', version=version, description='''A reproducible mechanism which is used to generate large image datasets at various resolutions. The tool supports multiple image types, From a864ca26dc032a29e34d75d7968ca7e5db4f211b Mon Sep 17 00:00:00 2001 From: Robert Clark Date: Thu, 18 Feb 2021 16:12:44 -0600 Subject: [PATCH 3/3] Update Wheel description The original description was not getting parsed properly with multiple lines and was causing issues with the metadata. Signed-Off-By: Robert Clark --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f433139..53acfa2 100644 --- a/setup.py +++ b/setup.py @@ -18,9 +18,7 @@ author='NVIDIA Corporation', author_email='roclark@nvidia.com', version=version, - description='''A reproducible mechanism which is used to generate large -image datasets at various resolutions. The tool supports multiple image types, -including JPEGs, PNGs, BMPs, RecordIO, and TFRecord files''', + description='A tool to randomly generate image datasets of various resolutions', long_description=long_description, packages=find_packages(include=['imagine'], exclude=['tests']), license='Apache 2.0',