-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 965 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(name='mercury-base',
version='1.6',
url='https://github.com/webtoucher/mercury-base',
license='BSD-3-Clause',
author='Alexey Kuznetsov',
author_email='[email protected]',
description='Toolkit for communicating with Incotex Mercury meters via RS485/CAN bus',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Terminals :: Serial',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: Unix',
],
packages=find_packages(),
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=[
'modbus-crc~=1.3',
'pyserial~=3.0',
'simple-socket-client~=1.5',
],
zip_safe=False)