-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (27 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import find_packages, setup
from pathlib import Path
DESCRIPTION = "A Python wrapper library for ZKFinger fingerprint scanner software."
base_path = Path(__file__).parent
long_description = (base_path / "Readme.md").read_text()
setup(
name='pyzkfp',
packages=find_packages(),
version='0.1.5',
license="GPLv3",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author='Amjed Alqasemi',
url='https://github.com/alqasemy2020/pyzkfp',
author_email='alqasemy2020@gmail.com',
install_requires=['pythonnet', 'pillow'],
keywords=['python', 'fingerprint', 'scanner', 'wrapper', 'library', 'zkteco', 'zkfinger', 'zkfp', 'zklib', 'zkaccess', 'zktime'],
package_dir={'pyzkfp': 'pyzkfp'},
package_data={'pyzkfp': ['dll/*.dll']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent"
],
python_requires=">=3.6",
)