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
|
#!/usr/bin/env python
from distutils.core import setup, Extension
setup(
name = 'zbar',
version = '0.22.2',
author = 'Jeff Brown',
author_email = 'spadix@users.sourceforge.net',
url = 'http://zbar.sourceforge.net',
description = 'read barcodes from images or video',
license = 'LGPL',
long_description = open('README').read(),
classifiers = [
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'Environment :: X11 Applications',
'Environment :: Win32 (MS Windows)',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Topic :: Communications',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries',
],
ext_modules = [
Extension('zbar', [
'zbarmodule.c',
'enum.c',
'exception.c',
'symbol.c',
'symbolset.c',
'symboliter.c',
'image.c',
'processor.c',
'imagescanner.c',
'decoder.c',
'scanner.c',
],
libraries = [ 'zbar' ],
include_dirs = ['../include']
),
],
)
|