mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 12:53:38 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
		
			139 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			139 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								set -e
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								rm -rf build dist *.egg-info
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								pip install setuptools wheel twine
							 | 
						||
| 
								 | 
							
								python setup.py sdist bdist_wheel
							 | 
						||
| 
								 | 
							
								twine upload dist/*
							 |