Adapt to new dir structure
parent
0605abfea5
commit
7b493812e8
|
@ -1,2 +1 @@
|
||||||
from ._libgtsam_python import *
|
from ._libgtsam_python import *
|
||||||
from . import utils
|
|
|
@ -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()
|
||||||
|
|
|
@ -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']},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue