Skip to content

Commit 915228e

Browse files
committed
upip preparation
1 parent bf2efc5 commit 915228e

3 files changed

Lines changed: 16 additions & 9 deletions

File tree

File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MLX90614
1+
# MicroPython MLX90614
22

33
A MicroPython library for interfacing with a MLX90614 IR temperature sensor.
44

setup.py

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
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

37
setup(
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

Comments
 (0)