forked from hovren/crisp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 784 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 784 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
# Scripts to be installed to some dir
scripts = [ "scripts/crisppose",
"scripts/crisptime"]
# Fast quaternion integration module
fastint_sources = ["crisp/fastintegrate/fastint.pyx",]
fastint_module = Extension("crisp.fastintegrate", fastint_sources)
setup(name='crisp',
version='1.0',
author="Hannes Ovrén",
author_email="hannes.ovren@liu.se",
description="Camera-to-IMU calibration and synchronization toolkit",
license="GPL",
scripts=scripts,
packages=['crisp'],
ext_modules=[fastint_module],
cmdclass={'build_ext' : build_ext},
)