setup.py: changes to license, hopefully fixes pypi
This commit is contained in:
13
setup.py
13
setup.py
@@ -11,12 +11,19 @@ with open('LICENSE') as f:
|
|||||||
setup(
|
setup(
|
||||||
name='sgp30',
|
name='sgp30',
|
||||||
description='Library for reading data from the sensiron SGP30',
|
description='Library for reading data from the sensiron SGP30',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
author='Simon Albinsson',
|
author='Simon Albinsson',
|
||||||
author_email='pipmon@zinob.se',
|
author_email='pipmon@zinob.se',
|
||||||
url='https://github.com/zinob/RPI_SGP30',
|
url='https://github.com/zinob/RPI_SGP30',
|
||||||
license=license,
|
license='MIT',
|
||||||
packages=find_packages(exclude=('tests')),
|
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',
|
||||||
|
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user