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', package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}' }, packages=['gtsam', 'gtsam_utils', 'gtsam_examples', 'gtsam_tests'], package_data={'gtsam' : ['_libgtsam_python.so']}, )