| 
									
										
										
										
											2013-02-18 16:09:40 -05:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | from setuptools import setup, find_packages | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | setup( | 
					
						
							|  |  |  |     name='moto', | 
					
						
							| 
									
										
										
										
											2013-02-25 23:56:41 -05:00
										 |  |  |     version='0.0.2', | 
					
						
							| 
									
										
										
										
											2013-02-18 16:09:40 -05:00
										 |  |  |     description='Moto is a library that allows your python tests to easily mock out the boto library', | 
					
						
							|  |  |  |     author='Steve Pulec', | 
					
						
							|  |  |  |     author_email='spulec@gmail', | 
					
						
							|  |  |  |     url='https://github.com/spulec/moto', | 
					
						
							| 
									
										
										
										
											2013-02-25 23:56:41 -05:00
										 |  |  |     packages=find_packages(), | 
					
						
							|  |  |  |     install_requires=[ | 
					
						
							|  |  |  |         "boto" | 
					
						
							|  |  |  |     ], | 
					
						
							| 
									
										
										
										
											2013-02-18 16:09:40 -05:00
										 |  |  | ) |