1- from distutils .core import setup
1+ import sys
2+ # Remove current dir from sys.path, otherwise setuptools will peek up our
3+ # module instead of system.
4+ sys .path .pop (0 )
5+ from setuptools import setup
26
37setup (
48 name = 'micropython-mlx90614' ,
59 py_modules = ['mlx90614' ],
6- version = " 1.0" ,
7- description = "Driver for MicroPython for the MLX90614 IR temperature sensor." ,
8- long_description = """ \
9- This library lets you communicate with a MLX90614 IR temperature sensor.
10- """ ,
10+ version = ' 1.0.0' ,
11+ description = ' MicroPython library for the MLX90614 IR temperature sensor.' ,
12+ long_description = 'This library lets you communicate with a MLX90614 IR temperature sensor.' ,
13+ keywords = 'mlx90614 infrared temperature micropython' ,
14+ url = 'https://github.com/mcauser/micropython-mlx90614' ,
1115 author = 'Mike Causer' ,
1216 author_email = 'mcauser@gmail.com' ,
17+ maintainer = 'Mike Causer' ,
18+ maintainer_email = 'mcauser@gmail.com' ,
19+ license = 'MIT' ,
1320 classifiers = [
14- 'Development Status :: 6 - Mature ' ,
15- 'Programming Language :: Python :: 3 ' ,
21+ 'Development Status :: 5 - Production/Stable ' ,
22+ 'Programming Language :: Python :: Implementation :: MicroPython ' ,
1623 'License :: OSI Approved :: MIT License' ,
1724 ],
1825)
0 commit comments