Installation script for python Distutils for python package. Installs to default python dist-packages location call : python setup.py install

release/4.3a0
Andrew Melim 2013-11-20 05:31:21 +00:00 committed by Ellon Mendes
parent 414e6b58f9
commit def2f1a91c
2 changed files with 16 additions and 0 deletions

1
python/gtsam/__init__.py Normal file
View File

@ -0,0 +1 @@
from libgtsam import *

15
python/setup.py Normal file
View File

@ -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']},
)