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
|
|
|
|
|
|
2015-11-25 21:36:44 +08:00
|
|
|
setup(name='gtsam',
|
|
|
|
|
version='4.0.0',
|
|
|
|
|
description='GTSAM Python wrapper',
|
|
|
|
|
license = "BSD",
|
2013-11-20 13:31:21 +08:00
|
|
|
author='Dellaert et. al',
|
|
|
|
|
author_email='Andrew.Melim@gatech.edu',
|
2015-11-25 21:36:44 +08:00
|
|
|
maintainer_email='gtsam@lists.gatech.edu',
|
|
|
|
|
url='https://collab.cc.gatech.edu/borg/gtsam',
|
|
|
|
|
packages=['gtsam', 'gtsam.examples', 'gtsam.utils'],
|
|
|
|
|
package_data={'gtsam' : ['_libgtsam_python.so']},
|
2013-11-20 13:31:21 +08:00
|
|
|
)
|