added future to install

This commit is contained in:
Arturo Hernandez 2018-04-30 09:33:17 -04:00
parent 402ba438d1
commit dc4629a1bc
3 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,22 @@
Changelog
=========
Version 0.9
-----------
* Initial Python 3 Support
* major changes
Version 0.8
-----------
* test suite tool (test_machine.py)
* Initial TCP support
Version 0.7
-----------
* internal major changes
Version 0.6
-----------
* device password support
Version 0.5
-----------

View File

@ -19,5 +19,6 @@ setup(
'biometrics',
'security'
],
install_requires=['future'],
zip_safe=False
)

View File

@ -6,7 +6,7 @@ from zk import ZK, const
sys.path.append("zk")
conn = None
zk = ZK('192.168.1.10', port=4370, timeout=5)
zk = ZK('192.168.1.201', port=4370, timeout=5)
try:
print 'Connecting to device ...'
conn = zk.connect()