Skip to content

Commit 7fc559b

Browse files
committed
Add tornado extra options, update readme
1 parent faca19a commit 7fc559b

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,15 @@ permissions or a virtualenv currently running)::
104104
easy_install -U pymodbus
105105
pip install -U pymodbus
106106

107+
To Install pymodbus with twisted support run
108+
.. code-block:: python
109+
pip install -U pymodbus[twisted]
110+
111+
To Install pymodbus with tornado support run
112+
113+
.. code-block:: python
114+
pip install -U pymodbus[tornado]
115+
107116
Otherwise you can pull the trunk source and install from there::
108117

109118
git clone git://github.com/bashwork/pymodbus.git

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@
8787
'pyasn1 >= 0.1.4',
8888
'pycrypto >= 2.6'
8989
],
90+
'tornado': [
91+
'tornado >= 4.5.3'
92+
]
9093
},
9194
test_suite='nose.collector',
9295
cmdclass=command_classes,

0 commit comments

Comments
 (0)