forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| # coding: utf-8
 | |
| 
 | |
| from setuptools import setup
 | |
| 
 | |
| setup(
 | |
|     name='pytoml',
 | |
|     version='0.1.10',
 | |
| 
 | |
|     description='A parser for TOML-0.4.0',
 | |
|     author='Martin Vejnár',
 | |
|     author_email='avakar@ratatanek.cz',
 | |
|     url='https://github.com/avakar/pytoml',
 | |
|     license='MIT',
 | |
| 
 | |
|     packages=['pytoml'],
 | |
|     )
 | 
