Project maintenance.

This commit is contained in:
Johan Bloemberg 2016-11-12 01:34:32 +01:00
parent 4afab70dc0
commit 9363840042
No known key found for this signature in database
GPG Key ID: B1AE6948ED49BB55
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
Change Log Change Log
---------- ----------
**0.3**
- Added asyncio reader for non-blocking reads.
**0.2** (2016-11-08) **0.2** (2016-11-08)
- User https://github.com/aequitas added support for DMSR version 2.2 - User https://github.com/aequitas added support for DMSR version 2.2

View File

@ -11,7 +11,7 @@ also includes a serial client to directly read and parse smart meter data.
Features Features
-------- --------
DSMR Parser currently supports DSMR versions 2.2 and 4.x. It has been tested with Python 3.5 DSMR Parser currently supports DSMR versions 2.2 and 4.x. It has been tested with Python 3.5 and 3.4.
Examples Examples

View File

@ -6,7 +6,7 @@ setup(
author='Nigel Dokter', author='Nigel Dokter',
author_email='nigeldokter@gmail.com', author_email='nigeldokter@gmail.com',
url='https://github.com/ndokter/dsmr_parser', url='https://github.com/ndokter/dsmr_parser',
version='0.2', version='0.3',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
'pyserial>=3,<4', 'pyserial>=3,<4',