mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-03 21:43:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			251 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			251 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
 | 
						|
VERSION = (1, 0, 9)
 | 
						|
CODENAME = "sufficient"
 | 
						|
BUILD_DT = (2021, 10, 9)
 | 
						|
 | 
						|
S_VERSION = ".".join(map(str, VERSION))
 | 
						|
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
 | 
						|
 | 
						|
__version__ = S_VERSION
 | 
						|
__build_dt__ = S_BUILD_DT
 | 
						|
 | 
						|
# I'm all ears
 |