2016-05-26 23:04:37 +07:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pyzk',
|
2016-05-30 09:47:58 +07:00
|
|
|
version='0.2',
|
2016-05-27 08:48:58 +07:00
|
|
|
description='an unofficial library of zksoftware the fingerprint attendance machine.',
|
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-05-27 08:24:56 +07:00
|
|
|
keywords = [
|
|
|
|
'zksoftware',
|
|
|
|
'pyzk',
|
|
|
|
'zk',
|
|
|
|
'attendance machine',
|
|
|
|
'fingerprint',
|
|
|
|
'biometrics',
|
|
|
|
'security'
|
|
|
|
],
|
2016-05-26 23:04:37 +07:00
|
|
|
zip_safe=False
|
|
|
|
)
|