FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
uModbus/setup.py at master · AdvancedClimateSystems/uModbus · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
AdvancedClimateSystems
/
uModbus
Public
Notifications
You must be signed in to change notification settings
Fork
89
Star
237
Code
Issues
30
Pull requests
15
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
uModbus
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
44 lines (40 loc) · 1.46 KB
Breadcrumbs
uModbus
/
setup.py
Copy path
File metadata and controls
executable file
·
44 lines (40 loc) · 1.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
"""
uModbus is a pure Python implementation of the Modbus protocol with support
for Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
"""
import
os
from
setuptools
import
setup
cwd
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__name__
))
long_description
=
open
(
os
.
path
.
join
(
cwd
,
'README.rst'
),
'r'
).
read
()
setup
(
name
=
'uModbus'
,
version
=
'1.0.4'
,
author
=
'Auke Willem Oosterhoff'
,
author_email
=
'a.oosterhoff@climotion.com'
,
description
=
'Implementation of the Modbus protocol in pure Python.'
,
url
=
'https://github.com/AdvancedClimateSystems/umodbus/'
,
long_description
=
long_description
,
license
=
'MPL'
,
packages
=
[
'umodbus'
,
'umodbus.client'
,
'umodbus.client.serial'
,
'umodbus.server'
,
'umodbus.server.serial'
,
],
install_requires
=
[
'pyserial~=3.4'
,
],
classifiers
=
[
'Development Status :: 6 - Mature'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Topic :: Software Development :: Embedded Systems'
,
])
Back
|
FazBrowse Home
|
New Git URL