2016-06-24 19:00:55 +07:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-05-26 23:04:37 +07:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pyzk',
|
2016-07-17 13:40:16 +07:00
|
|
|
version='0.5',
|
2016-06-24 19:00:55 +07:00
|
|
|
description='an unofficial library of zksoftware fingerprint device',
|
2016-05-26 23:04:37 +07:00
|
|
|
url='https://github.com/fananimi/pyzk',
|
|
|
|
author='Fanani M. Ihsan',
|
|
|
|
author_email='fanani.mi@gmail.com',
|
|
|
|
license='LICENSE.txt',
|
|
|
|
packages=['zk'],
|
2016-06-24 19:00:55 +07:00
|
|
|
keywords=[
|
2016-05-27 08:24:56 +07:00
|
|
|
'zk',
|
2016-06-24 19:00:55 +07:00
|
|
|
'pyzk',
|
|
|
|
'zksoftware',
|
2016-05-27 08:24:56 +07:00
|
|
|
'attendance machine',
|
|
|
|
'fingerprint',
|
|
|
|
'biometrics',
|
|
|
|
'security'
|
|
|
|
],
|
2018-04-30 20:33:17 +07:00
|
|
|
install_requires=['future'],
|
2016-05-26 23:04:37 +07:00
|
|
|
zip_safe=False
|
|
|
|
)
|