-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 926 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
from setuptools import setup, find_packages
setup(name='modbus-crc',
version='1.3',
url='https://github.com/webtoucher/modbus-crc',
license='BSD-3-Clause',
author='Alexey Kuznetsov',
author_email='[email protected]',
description='CRC-16 calculation for Modbus protocol',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
packages=['modbus_crc'],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
zip_safe=False)