mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 07:01:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			450 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			450 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Support for packaging, distribution and installation of Python projects.
 | 
						|
 | 
						|
Third-party tools can use parts of packaging as building blocks
 | 
						|
without causing the other modules to be imported:
 | 
						|
 | 
						|
    import packaging.version
 | 
						|
    import packaging.metadata
 | 
						|
    import packaging.pypi.simple
 | 
						|
    import packaging.tests.pypi_server
 | 
						|
"""
 | 
						|
 | 
						|
from logging import getLogger
 | 
						|
 | 
						|
__all__ = ['__version__', 'logger']
 | 
						|
 | 
						|
__version__ = "1.0a3"
 | 
						|
logger = getLogger('packaging')
 |