21 lines
546 B
Python
Raw Normal View History

2016-08-22 20:16:11 +02: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 19:26:21 +01:00
author_email='nigeldokter@gmail.com',
url='https://github.com/ndokter/dsmr_parser',
2018-09-23 12:59:02 +02:00
version='0.12',
2016-08-22 20:16:11 +02:00
packages=find_packages(),
install_requires=[
'pyserial>=3,<4',
2016-11-12 01:36:36 +01:00
'pyserial-asyncio<1',
2016-12-28 20:29:34 +01:00
'pytz',
'PyCRC>=1.2,<2'
],
entry_points={
'console_scripts': ['dsmr_console=dsmr_parser.__main__:console']
},
2016-08-22 20:16:11 +02:00
)