added future to install
This commit is contained in:
parent
402ba438d1
commit
dc4629a1bc
17
CHANGELOG.md
17
CHANGELOG.md
@ -1,5 +1,22 @@
|
|||||||
Changelog
|
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
|
Version 0.5
|
||||||
-----------
|
-----------
|
||||||
|
1
setup.py
1
setup.py
@ -19,5 +19,6 @@ setup(
|
|||||||
'biometrics',
|
'biometrics',
|
||||||
'security'
|
'security'
|
||||||
],
|
],
|
||||||
|
install_requires=['future'],
|
||||||
zip_safe=False
|
zip_safe=False
|
||||||
)
|
)
|
||||||
|
2
test.py
2
test.py
@ -6,7 +6,7 @@ from zk import ZK, const
|
|||||||
sys.path.append("zk")
|
sys.path.append("zk")
|
||||||
|
|
||||||
conn = None
|
conn = None
|
||||||
zk = ZK('192.168.1.10', port=4370, timeout=5)
|
zk = ZK('192.168.1.201', port=4370, timeout=5)
|
||||||
try:
|
try:
|
||||||
print 'Connecting to device ...'
|
print 'Connecting to device ...'
|
||||||
conn = zk.connect()
|
conn = zk.connect()
|
||||||
|
Loading…
Reference in New Issue
Block a user