pyztk/setup.py

23 lines
517 B
Python
Raw Normal View History

2016-05-26 23:04:37 +07:00
from setuptools import setup
setup(
name='pyzk',
2016-06-23 16:31:18 +07:00
version='0.4',
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
)