21 lines
546 B
Python
Raw Normal View History

2016-08-22 18:16:11 +00:00
from setuptools import setup, find_packages
setup(
name='dsmr-parser',
description='Library to parse Dutch Smart Meter Requirements (DSMR)',
author='Nigel Dokter',
2016-11-08 18:26:21 +00:00
author_email='nigeldokter@gmail.com',
url='https://github.com/ndokter/dsmr_parser',
2018-09-23 10:59:02 +00:00
version='0.12',
2016-08-22 18:16:11 +00:00
packages=find_packages(),
install_requires=[
'pyserial>=3,<4',
2016-11-12 00:36:36 +00:00
'pyserial-asyncio<1',
2016-12-28 19:29:34 +00:00
'pytz',
'PyCRC>=1.2,<2'
],
entry_points={
'console_scripts': ['dsmr_console=dsmr_parser.__main__:console']
},
2016-08-22 18:16:11 +00:00
)