2013-11-20 13:31:21 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
#http://docs.python.org/2/distutils/setupscript.html#setup-script
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup(name='GTSAM',
|
|
|
|
|
version='3.0',
|
|
|
|
|
description='Python Distribution Utilities',
|
|
|
|
|
author='Dellaert et. al',
|
|
|
|
|
author_email='Andrew.Melim@gatech.edu',
|
|
|
|
|
url='http://www.python.org/sigs/distutils-sig/',
|
|
|
|
|
packages=['gtsam'],
|
2014-12-18 02:44:56 +08:00
|
|
|
package_data={'gtsam' : ['libgtsam_python.so']},
|
2013-11-20 13:31:21 +08:00
|
|
|
)
|