mirror of
				https://github.com/yaml/pyyaml.git
				synced 2025-11-04 02:30:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			406 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			406 B
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
NAME = 'PyYAML3000'
 | 
						|
VERSION = '0.1'
 | 
						|
DESCRIPTION = "The next generation YAML parser for Python"
 | 
						|
AUTHOR = "Kirill Simonov"
 | 
						|
AUTHOR_EMAIL = 'xi@resolvent.net'
 | 
						|
LICENSE = "MIT"
 | 
						|
 | 
						|
from distutils.core import setup
 | 
						|
 | 
						|
setup(
 | 
						|
    name=NAME,
 | 
						|
    version=VERSION,
 | 
						|
    description=DESCRIPTION,
 | 
						|
    author=AUTHOR,
 | 
						|
    author_email=AUTHOR_EMAIL,
 | 
						|
    license=LICENSE,
 | 
						|
 | 
						|
    package_dir={'': 'lib'},
 | 
						|
    packages=['yaml'],
 | 
						|
)
 | 
						|
 |