-
Notifications
You must be signed in to change notification settings - Fork 176
/
setup.py
executable file
·80 lines (67 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python
import sys
import pyzbar
SCRIPTS = ['read_zbar']
# Optional dependency
PILLOW = 'Pillow>=3.2.0'
URL = 'https://github.com/NaturalHistoryMuseum/pyzbar/'
def readme():
# TODO IOError on Python 2.x. FileNotFoundError on Python 3.x.
try:
with open('README.rst') as f:
return f.read()
except:
return 'Visit {0} for more details.'.format(URL)
setup_data = {
'name': 'pyzbar',
'version': pyzbar.__version__,
'author': 'Lawrence Hudson',
'author_email': '[email protected]',
'url': URL,
'license': 'MIT',
'description': pyzbar.__doc__,
'long_description': readme(),
'long_description_content_type': 'text/x-rst',
'packages': ['pyzbar', 'pyzbar.scripts', 'pyzbar.tests'],
'test_suite': 'pyzbar.tests',
'scripts': ['pyzbar/scripts/{0}.py'.format(script) for script in SCRIPTS],
'entry_points': {
'console_scripts': [
'{0}=pyzbar.scripts.{0}:main'.format(script) for script in SCRIPTS
],
},
'extras_require': {
':python_version=="2.7"': ['enum34>=1.1.6', 'pathlib>=1.0.1'],
'scripts': [
PILLOW,
],
},
'tests_require': [
# TODO How to specify OpenCV? 'cv2>=2.4.8',
'mock>=2.0.0; python_version=="2.7"',
'numpy>=1.8.2',
PILLOW,
],
'include_package_data': True,
'classifiers': [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
}
def setuptools_setup():
from setuptools import setup
setup(**setup_data)
if (2, 7) == sys.version_info[:2] or (3, 5) <= sys.version_info:
setuptools_setup()
else:
sys.exit('Python versions 2.7 and >= 3.5 are supported')