From 9875370f7e0f02afa74d1d5bae43e98d77cedf3e Mon Sep 17 00:00:00 2001 From: Michal Minar Date: Wed, 4 Sep 2013 15:31:45 +0200 Subject: python: added license to setup and corrected classifiers PyPi requires valid classifiers from: https://pypi.python.org/pypi?%3Aaction=list_classifiers They compared case-sensitively. added pywbem to requires --- src/python/setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/python/setup.py') diff --git a/src/python/setup.py b/src/python/setup.py index 110109b..f65c340 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -6,11 +6,14 @@ setup( author_email='miminar@redhat.com', url='https://fedorahosted.org/openlmi/', version='0.2.0', + license='LGPLv2+', namespace_packages = ['lmi'], packages = ['lmi', 'lmi.base', 'lmi.providers'], + install_requires=['pywbem'], classifiers=[ - 'license :: osi approved :: gnu lesser general public license v2 or later (lgplv2+)', - 'operating system :: posix :: linux', - 'topic :: system :: systems administration', + 'License :: OSI Approved :: GNU Lesser General Public License' + ' v2 or later (LGPLv2+)', + 'Operating System :: POSIX :: Linux', + 'Topic :: System :: Systems Administration', ] ) -- cgit