20 lines
519 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',
2016-11-12 00:34:32 +00:00
version='0.3',
2016-08-22 18:16:11 +00:00
packages=find_packages(),
install_requires=[
'pyserial>=3,<4',
2016-11-11 23:45:55 +00:00
'pyserial-asyncio<1'
2016-11-07 18:59:39 +00:00
'pytz'
],
entry_points={
'console_scripts': ['dsmr_console=dsmr_parser.__main__:console']
},
2016-08-22 18:16:11 +00:00
)