README Fixes bug introduced by fixing rst-lit error

Seems like PyPi wont display -a revisions on its first page.
And apparently the rst-linter does not detect malformed underlines.
This commit is contained in:
Simon Albinsson
2018-04-23 08:58:37 +00:00
parent ea6fc48fbc
commit b5877b6d51
2 changed files with 10 additions and 10 deletions

View File

@@ -5,11 +5,11 @@ Program to read eCO_2 and TVOC from the `SGP30 sensor <https://www.sensirion.com
Quick usage-example: Quick usage-example:
-------------------_ --------------------
:: ::
from sgp30 import Sgp30 from sgp30 import Sgp30
import time import time
with SMBusWrapper(1) as bus: with SMBusWrapper(1) as bus:
sgp=Sgp30(bus,baseline_filename="/tmp/mySGP30_baseline") #things thing with the baselinefile is dumb and will be changed in the future sgp=Sgp30(bus,baseline_filename="/tmp/mySGP30_baseline") #things thing with the baselinefile is dumb and will be changed in the future
print("resetting all i2c devices") print("resetting all i2c devices")
@@ -18,12 +18,12 @@ Quick usage-example:
print(sgp.read_serial()) print(sgp.read_serial())
sgp.init_sgp() sgp.init_sgp()
print(sgp.read_measurements()) print(sgp.read_measurements())
print("the SGP30 takes at least 15 seconds to warm up, 12 hours before the readigs become really stable" print("the SGP30 takes at least 15 seconds to warm up, 12 hours before the readigs become really stable"
for i in range(20): for i in range(20):
time.sleep(1) time.sleep(1)
print(".",end="") print(".",end="")
print() print()
print(sgp.read_measurements()) print(sgp.read_measurements())
Features that are known to be missing (listing in rough order of importance): Features that are known to be missing (listing in rough order of importance):
----------------------------------------------------------------------------- -----------------------------------------------------------------------------

View File

@@ -11,7 +11,7 @@ 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.3-a', version='0.1.4',
long_description=readme, long_description=readme,
author='Simon Albinsson', author='Simon Albinsson',
author_email='pipmon@zinob.se', author_email='pipmon@zinob.se',