Enables excluded pep8 checks and fixes existing the related errors Change-Id: Ib3a909d79b9726567c1cebf5881d1878d91ee052
		
			
				
	
	
		
			15 lines
		
	
	
		
			276 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			276 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from setuptools import setup, find_packages
 | 
						|
 | 
						|
setup(
 | 
						|
    name='keystone_utils',
 | 
						|
    version='0.1',
 | 
						|
    description='',
 | 
						|
    author='',
 | 
						|
    author_email='',
 | 
						|
    zip_safe=False,
 | 
						|
    include_package_data=True,
 | 
						|
    packages=find_packages(),
 | 
						|
    test_suite='keystone_utils/tests'
 | 
						|
 | 
						|
)
 |