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',
|
2023-02-08 12:02:14 +01:00
|
|
|
author_email='mail@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',
|
2023-04-05 11:19:42 +02:00
|
|
|
version='1.2.1',
|
2020-10-18 09:49:09 +02:00
|
|
|
packages=find_packages(exclude=('test', 'test.*')),
|
2016-08-22 20:16:11 +02:00
|
|
|
install_requires=[
|
2016-11-08 10:21:59 +01:00
|
|
|
'pyserial>=3,<4',
|
2024-06-07 03:40:59 +02:00
|
|
|
'pyserial-asyncio-fast>=0.11',
|
2020-02-02 22:54:21 +01:00
|
|
|
'pytz',
|
2022-10-14 17:50:02 +02:00
|
|
|
'Tailer==0.4.1',
|
|
|
|
'dlms_cosem==21.3.2'
|
2016-11-06 20:40:01 +01:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['dsmr_console=dsmr_parser.__main__:console']
|
|
|
|
},
|
2016-08-22 20:16:11 +02:00
|
|
|
)
|