Commit 8877d9bb authored by ORD's avatar ORD

Merge pull request #62 from kevincolyar/master

Adds pycrypto requirement and corrects server example in README
parents 75ae5add 3a8b9db1
......@@ -103,7 +103,7 @@ if __name__ == "__main__":
Example server code:
```
from opcua import ua, Server
from opcua import ua, Server, ObjectIds
server = Server()
......
......@@ -4,7 +4,7 @@ from distutils.command.install_data import install_data
import sys
if sys.version_info[0] < 3:
install_requires = ["enum34", "trollius", "futures"]
install_requires = ["enum34", "trollius", "futures", "pycrypto"]
else:
install_requires = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment