-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
50 lines (40 loc) · 1.13 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
44
45
46
47
48
49
50
import os
from setuptools import find_packages, setup
from src.qrscan import version
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
# exposing the params so it can be imported
setup_params = {
'name': 'QrScan',
'version': version.__version__,
'description': 'QR Code & Barcode scanner cross-platform application',
'long_description': read('README.md'),
'long_description_content_type': 'text/markdown',
'author': 'Andre Miras',
'url': 'https://github.com/AndreMiras/QrScan',
'packages': find_packages(
where='src',
exclude=(
'tests',
)
),
'package_data': {'qrscan': ('*.kv',)},
'package_dir': {'': 'src'},
'entry_points': {
'console_scripts': ('qrscan=qrscan.main:main',),
},
'python_requires': '>=3',
'install_requires': (
'kivy-garden.kivymd',
'opencv-python>=4',
'raven',
'validators',
'zbarcam',
),
}
def run_setup():
setup(**setup_params)
# makes sure the setup doesn't run at import time
if __name__ == '__main__':
run_setup()