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