pyztk/setup.py

24 lines
554 B
Python
Raw Normal View History

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',
2018-04-30 21:32:10 +07:00
version='0.9',
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
2018-10-30 08:40:14 +07:00
)