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 101 102 103 104 105
|
#!/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__, __maintainer__
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n')
if (line and not line.startswith('--'))
]
install_requires.append("pyserial >= 3.4")
# --------------------------------------------------------------------------- #
# 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/asyncio/tornado.
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='bashwork@gmail.com',
maintainer=__maintainer__,
maintainer_email='otlasanju@gmail.com',
url='https://github.com/riptideio/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=install_requires,
extras_require={
'quality': [
'coverage >= 3.5.3',
'nose >= 1.2.1',
'mock >= 1.0.0',
'pep8 >= 1.3.3'
],
'documents': ['sphinx >= 1.1.3',
'sphinx_rtd_theme',
'humanfriendly'],
'twisted': [
'twisted >= 12.2.0',
'pyasn1 >= 0.1.4',
'pycrypto >= 2.6'
],
'tornado': [
'tornado >= 4.5.3'
],
'repl': [
'click>=6.7',
'prompt-toolkit==2.0.4',
'pygments==2.2.0'
]
},
entry_points={
'console_scripts': ['pymodbus.console=pymodbus.repl.main:main'],
},
test_suite='nose.collector',
cmdclass=command_classes,
)
|