Installation script for python Distutils for python package. Installs to default python dist-packages location call : python setup.py install
parent
414e6b58f9
commit
def2f1a91c
|
@ -0,0 +1 @@
|
||||||
|
from libgtsam import *
|
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
#http://docs.python.org/2/distutils/setupscript.html#setup-script
|
||||||
|
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
setup(name='GTSAM',
|
||||||
|
version='3.0',
|
||||||
|
description='Python Distribution Utilities',
|
||||||
|
author='Dellaert et. al',
|
||||||
|
author_email='Andrew.Melim@gatech.edu',
|
||||||
|
url='http://www.python.org/sigs/distutils-sig/',
|
||||||
|
packages=['gtsam'],
|
||||||
|
package_data={'gtsam' : ['libgtsam.so']},
|
||||||
|
)
|
Loading…
Reference in New Issue