From 119f3e6e862e75373bc305eb4f3bee517aaa462c Mon Sep 17 00:00:00 2001 From: James Brown Date: Wed, 31 Mar 2021 12:34:26 -0700 Subject: [PATCH] fill in license metadata in setuptools --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 432e733..ad47d3a 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ maintainer_email='rnabel@ucdavis.edu', packages=['pydrive', 'pydrive.test'], url='https://github.com/googleworkspace/PyDrive', - license='LICENSE', + license='Apache 2.0', description='Google Drive API made easy.', long_description=open('README.rst').read(), install_requires=[ @@ -17,4 +17,7 @@ "oauth2client >= 4.0.0", "PyYAML >= 3.0", ], + classifiers=[ + 'License :: OSI Approved :: Apache Software License', + ], )