forked from r-pad/se3_distributions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 748 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
29
30
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name='se3_distributions',
version='0.1dev',
author='Brian Okorn',
packages=find_packages('src'),
package_dir={'': 'src'},
description='Estimate pose distributions based on latent features',
long_description=open('README.md').read(),
package_data = {'': ['*.mat', '*.blend','*.npy']},
)
### ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD
#
#from distutils.core import setup
#from catkin_pkg.python_setup import generate_distutils_setup
#
## fetch values from package.xml
#setup_args = generate_distutils_setup(
# packages=['generic_pose'],
# package_dir={'': 'src'},
#)
#
#setup(**setup_args)
##