forked from uoip/pangolin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (37 loc) · 1.61 KB
/
setup.py
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
46
47
48
49
50
from setuptools import setup
from setuptools.command.install import install
from distutils.sysconfig import get_python_lib
import glob
import shutil
__library_file__ = './pangolin*.so'
__version__ = '0.0.1'
class CopyLibFile(install):
""""
Directly copy library file to python's site-packages directory.
"""
def run(self):
install_dir = get_python_lib()
lib_file = glob.glob(__library_file__)
assert len(lib_file) == 1 and len(install_dirs) >= 1
print('copying {} -> {}'.format(lib_file[0], install_dirs[0]))
shutil.copy(lib_file[0], install_dir)
setup(
name='pangolin',
version=__version__,
description='python binding for lightweight 3D visualization library Pangolin.',
url='https://github.com/uoip/pangolin',
license='MIT',
cmdclass=dict(
install=CopyLibFile
),
keywords='Pangolin, binding, OpenGL, 3D, visualization, Point Cloud',
long_description="""This is a Python binding for c++ library Pangolin
(https://github.com/stevenlovegrove/Pangolin).
Pangolin is a lightweight portable rapid development library for managing
OpenGL display / interaction and abstracting video input. At its heart is
a simple OpenGl viewport manager which can help to modularise 3D visualisation
without adding to its complexity, and offers an advanced but intuitive 3D navigation
handler. Pangolin also provides a mechanism for manipulating program variables through
config files and ui integration, and has a flexible real-time plotter for visualising
graphical data."""
)