14 lines
348 B
Python
14 lines
348 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='pyzk',
|
||
|
version='0.1',
|
||
|
description='The unofficial library of zksoftware the fingerprint attendance machine.',
|
||
|
url='https://github.com/fananimi/pyzk',
|
||
|
author='Fanani M. Ihsan',
|
||
|
author_email='fanani.mi@gmail.com',
|
||
|
license='LICENSE.txt',
|
||
|
packages=['zk'],
|
||
|
zip_safe=False
|
||
|
)
|