forked from pymodbus-dev/pymodbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (72 loc) · 2.67 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
#!/usr/bin/env python
'''
Installs pymodbus using distutils
Run:
python setup.py install
to install the package from the source archive.
For information about setuptools
http://peak.telecommunity.com/DevCenter/setuptools#new-and-changed-setup-keywords
'''
#---------------------------------------------------------------------------#
# initialization
#---------------------------------------------------------------------------#
try: # if not installed, install and proceed
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
from setup_commands import command_classes
except ImportError:
command_classes = {}
from pymodbus import __version__, __author__
#---------------------------------------------------------------------------#
# configuration
#---------------------------------------------------------------------------#
setup(name = 'pymodbus',
version = __version__,
description = 'A fully featured modbus protocol stack in python',
long_description='''
Pymodbus aims to be a fully implemented modbus protocol stack implemented
using twisted. Its orignal goal was to allow simulation of thousands of
modbus devices on a single machine for monitoring software testing.
''',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: X11 Applications :: GTK',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: System :: Networking',
'Topic :: Utilities'
],
keywords = 'modbus, twisted, scada',
author = __author__,
author_email = '[email protected]',
maintainer = __author__,
maintainer_email = '[email protected]',
url='http://code.google.com/p/pymodbus/',
license = 'BSD',
packages = find_packages(exclude=['examples', 'test']),
exclude_package_data = {'' : ['examples', 'test', 'tools', 'doc']},
py_modules = ['ez_setup'],
platforms = ['Linux', 'Mac OS X', 'Win'],
include_package_data = True,
zip_safe = True,
install_requires = [
'twisted >= 12.2.0',
'pyserial >= 2.6'
],
extras_require = {
'quality' : [ 'coverage >= 3.5.3', 'nose >= 1.2.1', 'mock >= 1.0.0', 'pep8 >= 1.3.3' ],
'documents' : [ 'sphinx >= 1.1.3' ],
'twisted' : [ 'pyasn1 >= 0.1.4', 'pycrypto >= 2.6' ],
},
test_suite = 'nose.collector',
cmdclass = command_classes,
)