gtsam/python/setup.py.in

14 lines
470 B
Python

from distutils.core import setup
setup(name='gtsam',
version='${GTSAM_VERSION_STRING}',
description='GTSAM Python wrapper',
license = "BSD",
author='Frank Dellaert et. al',
author_email='frank.dellaert@gatech.edu',
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']},
)