From 967aac5289b81edb37b001a2013d180901a6e01c Mon Sep 17 00:00:00 2001 From: Simon Albinsson Date: Mon, 23 Apr 2018 08:31:54 +0000 Subject: [PATCH] setup.py: changes to license, hopefully fixes pypi --- setup.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9b9dfae..a72dd49 100644 --- a/setup.py +++ b/setup.py @@ -11,12 +11,19 @@ with open('LICENSE') as f: setup( name='sgp30', description='Library for reading data from the sensiron SGP30', - version='0.1.2', + version='0.1.3', long_description=readme, author='Simon Albinsson', author_email='pipmon@zinob.se', url='https://github.com/zinob/RPI_SGP30', - license=license, + license='MIT', packages=find_packages(exclude=('tests')), - install_requires=['smbus2'] + install_requires=['smbus2'], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License' + ], + keywords='sgp30 i2c smbus smbus2', + )