-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (26 loc) · 922 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
setup(name="curvox",
version='1.0.0',
description=
"""
Python library with utilities for converting pointclouds, meshes,
and voxel grids between ros messages, files matrices, objects
""",
author='David Watkins',
author_email='[email protected]',
url='https://github.com/crlab/curvox',
packages=['curvox'],
scripts=['scripts/hausdorff_distance',
'scripts/jaccard_similarity',
'scripts/compute_depth_normals',
'scripts/compute_tactile_normals',
'scripts/curvox_complete',
'scripts/viewvox',
'scripts/curvox_binvox_to_ply',
'scripts/capture_ros_pc',
'scripts/find_pc_cluster',
'scripts/filter_pcd',
],
package_dir={'': 'src'},
)