| 
									
										
										
										
											2013-11-20 13:31:21 +08:00
										 |  |  | from distutils.core import setup | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-25 21:36:44 +08:00
										 |  |  | setup(name='gtsam', | 
					
						
							| 
									
										
										
										
											2016-01-25 07:28:16 +08:00
										 |  |  |       version='${GTSAM_VERSION_STRING}', | 
					
						
							| 
									
										
										
										
											2015-11-25 21:36:44 +08:00
										 |  |  |       description='GTSAM Python wrapper', | 
					
						
							|  |  |  |       license = "BSD", | 
					
						
							| 
									
										
										
										
											2016-01-25 07:28:16 +08:00
										 |  |  |       author='Frank Dellaert et. al', | 
					
						
							|  |  |  |       author_email='frank.dellaert@gatech.edu', | 
					
						
							| 
									
										
										
										
											2015-11-25 21:36:44 +08:00
										 |  |  |       maintainer_email='gtsam@lists.gatech.edu', | 
					
						
							|  |  |  |       url='https://collab.cc.gatech.edu/borg/gtsam', | 
					
						
							| 
									
										
										
										
											2016-01-25 07:51:04 +08:00
										 |  |  |       package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}' }, | 
					
						
							|  |  |  |       packages=['gtsam', 'gtsam_utils', 'gtsam_examples', 'gtsam_tests'], | 
					
						
							| 
									
										
										
										
											2016-01-25 12:22:40 +08:00
										 |  |  |       #package_data={'gtsam' : ['_libgtsam_python.so']},  # location of .so file is relative to package_dir | 
					
						
							|  |  |  |       data_files=[('${PY_INSTALL_FOLDER}/gtsam/', ['gtsam/_libgtsam_python.so'])],  # location of .so file relative to setup.py | 
					
						
							| 
									
										
										
										
											2013-11-20 13:31:21 +08:00
										 |  |  |      ) |