24 lines
522 B
Python
24 lines
522 B
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='pyzk',
|
|
version='0.4',
|
|
description='an unofficial library of zksoftware fingerprint device',
|
|
url='https://github.com/fananimi/pyzk',
|
|
author='Fanani M. Ihsan',
|
|
author_email='fanani.mi@gmail.com',
|
|
license='LICENSE.txt',
|
|
packages=['zk'],
|
|
keywords=[
|
|
'zk',
|
|
'pyzk',
|
|
'zksoftware',
|
|
'attendance machine',
|
|
'fingerprint',
|
|
'biometrics',
|
|
'security'
|
|
],
|
|
zip_safe=False
|
|
)
|