mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-12-22 12:54:29 +01:00
Fixed Manifest
This commit is contained in:
parent
7f2dbdf48e
commit
9b18ecf446
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# BME680
|
||||||
|
|
||||||
|
Python Library for the Bosch BME680 gas, temperature, pressure and humidity sensor.
|
@ -1,3 +1,8 @@
|
|||||||
|
1.0.1
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Added Manifest to Python package
|
||||||
|
|
||||||
1.0.0
|
1.0.0
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
5
library/MANIFEST.in
Normal file
5
library/MANIFEST.in
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
include CHANGELOG.txt
|
||||||
|
include LICENSE.txt
|
||||||
|
include README.txt
|
||||||
|
include setup.py
|
||||||
|
include bme680.py
|
@ -2,7 +2,7 @@ from .constants import *
|
|||||||
import math
|
import math
|
||||||
import time
|
import time
|
||||||
|
|
||||||
__version__ = '1.0.0'
|
__version__ = '1.0.1'
|
||||||
|
|
||||||
class BME680(BME680Data):
|
class BME680(BME680Data):
|
||||||
"""BOSCH BME680
|
"""BOSCH BME680
|
||||||
|
@ -39,7 +39,7 @@ classifiers = ['Development Status :: 5 - Production/Stable',
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'bme680',
|
name = 'bme680',
|
||||||
version = '1.0.0',
|
version = '1.0.1',
|
||||||
author = 'Philip Howard',
|
author = 'Philip Howard',
|
||||||
author_email = 'phil@pimoroni.com',
|
author_email = 'phil@pimoroni.com',
|
||||||
description = """Python library for driving the Pimoroni BME680 Breakout""",
|
description = """Python library for driving the Pimoroni BME680 Breakout""",
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
|
bme680 (1.0.1) stable; urgency=low
|
||||||
|
|
||||||
|
* Added Manifest to Python package
|
||||||
|
|
||||||
|
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000
|
||||||
|
|
||||||
bme680 (1.0.0) stable; urgency=low
|
bme680 (1.0.0) stable; urgency=low
|
||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|
||||||
-- Phil Howard <phil@pimoroni.com> Mon, 08 Sep 2014 00:00:00 +0000
|
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
|
bme680 (1.0.1) stable; urgency=low
|
||||||
|
|
||||||
|
* Added Manifest to Python package
|
||||||
|
|
||||||
|
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000
|
||||||
|
|
||||||
bme680 (1.0.0) stable; urgency=low
|
bme680 (1.0.0) stable; urgency=low
|
||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|
||||||
-- Phil Howard <phil@pimoroni.com> Mon, 08 Sep 2014 00:00:00 +0000
|
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000
|
||||||
|
Loading…
Reference in New Issue
Block a user