mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	api: Fix need to manually update list of integrations.
(imported from commit 6842230f939483d32acb023ad38c53cb627df149)
This commit is contained in:
		
							
								
								
									
										10
									
								
								api/setup.py
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								api/setup.py
									
									
									
									
									
								
							| @@ -4,6 +4,7 @@ | ||||
| import humbug | ||||
|  | ||||
| import glob | ||||
| import os.path | ||||
| from distutils.core import setup | ||||
|  | ||||
| setup(name='humbug', | ||||
| @@ -20,9 +21,10 @@ setup(name='humbug', | ||||
|       ], | ||||
|       url='https://humbughq.com/dist/api/', | ||||
|       packages=['humbug'], | ||||
|       data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"]), | ||||
|                   ('share/humbug/integrations/trac', glob.glob('integrations/trac/*')), | ||||
|                   ('share/humbug/integrations/nagios', glob.glob('integrations/nagios/*')), | ||||
|                   ], | ||||
|       data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"])] + \ | ||||
|           [(os.path.join('share/humbug/', relpath), | ||||
|             glob.glob(os.path.join(relpath, '*'))) for relpath in | ||||
|            glob.glob("integrations/*") | ||||
|            ], | ||||
|       scripts=["bin/humbug-send"], | ||||
|      ) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user