-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
43 lines (40 loc) · 1.35 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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 is not supported')
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='coronacheck-tools',
version='5',
description='Unofficial tool to encode, decode and verify the domestic QR code from CoronaCheck.nl. Not affiliated with CoronaCheck.nl or Ministry of VWS.', # noqa: E501
long_description=long_description,
long_description_content_type="text/markdown",
author='Thomas Phil',
author_email='[email protected]',
url='https://github.com/Sikerdebaard/coronacheck-tools',
python_requires=">=3.6",
#packages=find_packages(), # same as name
packages=['coronacheck_tools'],
#package_data={'': ['lib/(*.dll|*.so)']},
include_package_data=True,
install_requires=[
'cleo>=0.8.1',
'base58>=2.1.0',
'pyzbar>=0.1.8',
'opencv-python==4.5.3.56', # afix opencv to a version with raspberry pi compatible wheels
'asn1tools>=0.158.0',
'qrcode>=6.1',
'Pillow>=8.2.0',
'cffi>=1.14.5',
'numexpr>=2.7.3',
'appdirs>=1.4.4',
'requests>=2.25.1',
'cryptography>=3.4.7',
],
entry_points={
'console_scripts': [
'coronacheck-tools=coronacheck_tools.cli:main',
],
},
)