forked from pjkundert/cpppo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
82 lines (76 loc) · 3.06 KB
/
setup.py
File metadata and controls
82 lines (76 loc) · 3.06 KB
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
from setuptools import setup
import os, sys
here = os.path.abspath( os.path.dirname( __file__ ))
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
console_scripts = [
'enip_server = cpppo.server.enip.main:main',
'enip_client = cpppo.server.enip.client:main',
]
install_requires = open( os.path.join( here, "requirements.txt" )).readlines()
if sys.version_info.major < 3:
console_scripts += [
'modbus_sim = cpppo.bin.modbus_sim:main',
'modbus_poll = cpppo.bin.modbus_poll:main',
]
setup(
name = "cpppo",
version = __version__,
tests_require = [ "pytest" ],
install_requires = install_requires,
packages = [
"cpppo",
"cpppo/server",
"cpppo/server/enip",
"cpppo/remote",
"cpppo/history",
"cpppo/bin",
],
package_dir = {
"cpppo": ".",
"cpppo/server": "./server",
"cpppo/server/enip": "./server/enip",
"cpppo/remote": "./remote",
"cpppo/history": "./history",
"cpppo/bin": "./bin",
},
entry_points = {
'console_scripts': console_scripts,
},
include_package_data = True,
author = "Perry Kundert",
author_email = "perry@hardconsulting.com",
description = "Cpppo is a Communication Protocol Python Parser and Originator",
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 Logix 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.
""",
license = "Dual License; GPLv3 and Proprietary",
keywords = "cpppo protocol parser DFA",
url = "https://github.com/pjkundert/cpppo",
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.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"
],
)