You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			358 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			358 B
		
	
	
	
		
			Python
		
	
from typing import Final, LiteralString
 | 
						|
 | 
						|
__all__ = (
 | 
						|
    '__version__',
 | 
						|
    'full_version',
 | 
						|
    'git_revision',
 | 
						|
    'release',
 | 
						|
    'short_version',
 | 
						|
    'version',
 | 
						|
)
 | 
						|
 | 
						|
version: Final[LiteralString]
 | 
						|
__version__: Final[LiteralString]
 | 
						|
full_version: Final[LiteralString]
 | 
						|
 | 
						|
git_revision: Final[LiteralString]
 | 
						|
release: Final[bool]
 | 
						|
short_version: Final[LiteralString]
 |