-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 885 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup, Extension
module_openvg = Extension('OpenVG',
include_dirs = ['.', '/usr/include/vg'],
libraries = ['OpenVG', 'GL', 'GLU'],
library_dirs = ['/usr/lib'],
sources = ['vg_image.cc',
'vg_path.cc',
'vg_context.cc',
'vg_paint.cc',
'vg_module.cc',
'vgu_module.cc',
'openvg_module.cc'])
setup (name = 'OpenVG-python',
version = '0.1.0',
description = 'OpenVG Python Bindings',
author = 'Dan Eicher',
author_email = 'dan@trollwerks.org',
license = 'GPLv2+',
ext_modules = [module_openvg])