-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
18 lines (16 loc) · 917 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup, Extension
module = Extension('DepthSense',
include_dirs = ['/usr/local/include', '/opt/softkinetic/DepthSenseSDK/include'],
libraries = ['DepthSensePlugins', 'DepthSense', 'python2.7', 'turbojpeg'],
library_dirs = ['/usr/local/lib', '/opt/softkinetic/DepthSenseSDK/lib'],
#extra_compile_args = ['-std=g++11'],
sources = ['src/depthsense.cxx', 'src/initdepthsense.cxx', 'src/imageproccessing.cxx'])
setup (name = 'DepthSense',
version = '1.0',
description = 'Python Wrapper for the DepthSense SDK',
author = 'Abdi Dahir',
author_email = '[email protected]',
url = 'http://github.com/snkz/DepthSense-SimpleCV',
long_description = '''The Python DepthSense SDK wrapper allows basic
interaction with the DepthSense camera, compitable with SimpleCV.''',
ext_modules = [module])