22 lines
600 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)',
2021-02-12 17:56:33 +01:00
author='Nigel Dokter and many others',
2019-03-04 20:31:51 +01:00
author_email='nigel@nldr.net',
2021-04-21 23:36:25 +02:00
license='MIT',
2016-11-08 19:26:21 +01:00
url='https://github.com/ndokter/dsmr_parser',
2022-01-04 21:14:53 +01:00
version='0.32',
2020-10-18 09:49:09 +02:00
packages=find_packages(exclude=('test', 'test.*')),
2016-08-22 20:16:11 +02:00
install_requires=[
'pyserial>=3,<4',
2016-11-12 01:36:36 +01:00
'pyserial-asyncio<1',
2020-02-02 22:54:21 +01:00
'pytz',
'Tailer==0.4.1'
],
entry_points={
'console_scripts': ['dsmr_console=dsmr_parser.__main__:console']
},
2016-08-22 20:16:11 +02:00
)