16 lines
714 B
Python
16 lines
714 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',
|
|
package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}' },
|
|
packages=['gtsam', 'gtsam_utils', 'gtsam_examples', 'gtsam_tests'],
|
|
#package_data={'gtsam' : ['_libgtsam_python.so']}, # location of .so file is relative to package_dir
|
|
data_files=[('${PY_INSTALL_FOLDER}/gtsam/', ['gtsam/_gtsampy.so'])], # location of .so file relative to setup.py
|
|
)
|