-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 804 Bytes
/
Copy pathsetup.py
File metadata and controls
42 lines (35 loc) · 804 Bytes
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
'''
Configure:
python setup.py install
pyVideoDatasets
Colin Lea
2013
'''
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy as np
ext_modules = []
for e in ext_modules:
e.pyrex_directives = {
"boundscheck": False,
"wraparound": False,
"infer_types": True
}
e.extra_compile_args = ["-w"]
print ext_modules
setup(
author = 'Colin Lea',
author_email = 'colincsl@gmail.com',
description = '',
license = "FreeBSD",
version= "0.1",
name = 'pyVideoDatasets',
cmdclass = {'build_ext': build_ext},
include_dirs = [np.get_include()],
packages= [ "pyVideoDatasets",
"pyKinectTools.dataset_readers",
],
package_data={'':['*.xml', '*.png', '*.yml', '*.txt']},
ext_modules = ext_modules
)