-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathsetup.py
100 lines (86 loc) · 3.58 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
from setuptools import setup, find_packages
import os
import sys
import glob
import fnmatch
HERE = os.path.dirname( os.path.abspath( __file__ ))
__version__ = None
__version_info__ = None
exec( open( 'version.py', 'r' ).read() )
# Presently the pymodbus-based Modbus/TCP scripts are only compatible with Python2, as is web.py.
# So, make web.py and pymodbus requirements optional. The argparse module wasn't included 'til
# Python 2.7, but is available for installation in prior versions.
console_scripts = [
'enip_server = cpppo.server.enip.main:main',
'enip_client = cpppo.server.enip.client:main',
'enip_get_attribute = cpppo.server.enip.get_attribute:main',
]
if sys.version_info[0:2] < (3,0):
console_scripts += [
'modbus_sim = cpppo.bin.modbus_sim:main',
'modbus_poll = cpppo.bin.modbus_poll:main',
]
entry_points = {
'console_scripts': console_scripts,
}
install_requires = open( os.path.join( HERE, "requirements.txt" )).readlines()
if sys.version_info[0:2] < (2,7):
install_requires.append( "argparse" )
if sys.version_info[0:2] < (3,0):
install_requires.append( "configparser" )
install_requires.append( "ipaddress" )
tests_require = open( os.path.join( HERE, "requirements-optional.txt" )).readlines()
package_dir = {
"cpppo": ".",
"cpppo/server": "./server",
"cpppo/server/enip": "./server/enip",
"cpppo/remote": "./remote",
"cpppo/history": "./history",
"cpppo/tools": "./tools",
"cpppo/bin": "./bin",
}
long_description = """\
Cpppo is used to create event-driven state machines which consume a stream
of input and generate a series of state changes, or an indication that no
progress is possible due to (for example) exhaustion of input symbols.
This is useful for creating parsers for complex grammars describing
languages, including binary computer protocols.
An example included with cpppo is an implementation of a subset of the
EtherNet/IP CIP language used by some industrial control equipment, such as
Rockwell's ControlLogix Controllers. The cpppo.server.enip package can be used
to create Python programs which can parse requests in this protocol (eg. as a
server, to implement something like a simulated Controller) or originate
requests in this protocol (eg. as a client, sending commands to a Controller).
In addition, the ability to read, write and poll remote PLCs of
various types including Modbus/TCP is provided.
"""
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Environment :: Console",
"Environment :: Web Environment",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Text Processing :: Filters"
]
setup(
name = "cpppo",
version = __version__,
tests_require = tests_require,
install_requires = install_requires,
packages = package_dir.keys(),
package_dir = package_dir,
zip_safe = False,
entry_points = entry_points,
author = "Perry Kundert",
author_email = "[email protected]",
description = "Cpppo is a Communication Protocol Python Parser and Originator",
long_description = long_description,
license = "Dual License; GPLv3 and Proprietary",
keywords = "cpppo protocol parser DFA EtherNet/IP CIP",
url = "https://github.com/pjkundert/cpppo",
classifiers = classifiers,
)