Skip to content

Commit

Permalink
update doc + require python 3.6+
Browse files Browse the repository at this point in the history
  • Loading branch information
mlx-kva committed Mar 2, 2021
1 parent 1840beb commit adcd07e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

MLX90641 is a thermal camera (16x12 pixels) using Far InfraRed radiation from objects to measure the object temperature.
https://www.melexis.com/mlx90641
This python driver interfaces the MLX90641 and aims to facilitate the interfacing for prototyping applications.
This python driver interfaces the MLX90641 and aims to facilitate rapid prototyping.

Currently this driver supports 3 type of interfaces:
- EVB90640-41 ==> https://www.melexis.com/en/product/EVB90640-41/
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

version = '1.1.1'
version = '1.1.2'

requires = []

Expand All @@ -10,13 +10,14 @@
setup(
name='mlx90641-driver',
version=version,
description='MLX90641 FIR Array python interface',
description='MLX90641 Melexis thermal camera (16x12) rapid prototyping python package',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License, Version 2.0',
# entry_points = {'console_scripts': ['mlx90641-dump-frame = mlx.examples.mlx90640_dump_frame:main']},
entry_points={'console_scripts': []},
install_requires=requires,
python_requires='>=3.6',
url='https://github.com/melexis-fir/mlx90641-driver-py',
# Provide either the link to your github or to your website
download_url='https://github.com/melexis-fir/mlx90641-driver-py/archive/V' + version + '.tar.gz',
Expand All @@ -32,7 +33,7 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
)

0 comments on commit adcd07e

Please sign in to comment.