Adapt to new dir structure

release/4.3a0
dellaert 2016-01-24 15:51:04 -08:00
parent 0605abfea5
commit 7b493812e8
3 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1 @@
from ._libgtsam_python import * from ._libgtsam_python import *
from . import utils

View File

@ -1,7 +1,7 @@
from __future__ import print_function from __future__ import print_function
import gtsam import gtsam
from gtsam.examples.SFMdata import * from gtsam_examples.SFMdata import *
from gtsam.utils import * from gtsam_utils import *
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D from mpl_toolkits.mplot3d import Axes3D
import time # for sleep() import time # for sleep()

View File

@ -8,6 +8,7 @@ setup(name='gtsam',
author_email='frank.dellaert@gatech.edu', author_email='frank.dellaert@gatech.edu',
maintainer_email='gtsam@lists.gatech.edu', maintainer_email='gtsam@lists.gatech.edu',
url='https://collab.cc.gatech.edu/borg/gtsam', url='https://collab.cc.gatech.edu/borg/gtsam',
packages=['gtsam', 'gtsam.examples', 'gtsam.utils'], package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}' },
packages=['gtsam', 'gtsam_utils', 'gtsam_examples', 'gtsam_tests'],
package_data={'gtsam' : ['_libgtsam_python.so']}, package_data={'gtsam' : ['_libgtsam_python.so']},
) )