Add 'dsmr_parser/' from commit 'f9e188812fbaee90974a3cddf201bbb40278fd9a'

git-subtree-dir: dsmr_parser
git-subtree-mainline: 2f6e219e50
git-subtree-split: f9e188812f
This commit is contained in:
Ard Kuijpers
2020-06-03 13:16:25 +02:00
34 changed files with 3118 additions and 0 deletions

20
dsmr_parser/setup.py Normal file
View File

@@ -0,0 +1,20 @@
from setuptools import setup, find_packages
setup(
name='dsmr-parser',
description='Library to parse Dutch Smart Meter Requirements (DSMR)',
author='Nigel Dokter',
author_email='nigel@nldr.net',
url='https://github.com/ndokter/dsmr_parser',
version='0.21',
packages=find_packages(),
install_requires=[
'pyserial>=3,<4',
'pyserial-asyncio<1',
'pytz',
'Tailer==0.4.1'
],
entry_points={
'console_scripts': ['dsmr_console=dsmr_parser.__main__:console']
},
)