pep8 for setup and sphinx conf py files.
This commit is contained in:
		
					parent
					
						
							
								9b2800b614
							
						
					
				
			
			
				commit
				
					
						356e4b89f8
					
				
			
		
					 2 changed files with 77 additions and 72 deletions
				
			
		
							
								
								
									
										27
									
								
								setup.py
									
										
									
									
									
								
							
							
						
						
									
										27
									
								
								setup.py
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -3,6 +3,7 @@ import cdist
 | 
			
		|||
import os
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def data_finder(data_dir):
 | 
			
		||||
    entries = []
 | 
			
		||||
    for name in os.listdir(data_dir):
 | 
			
		||||
| 
						 | 
				
			
			@ -29,17 +30,18 @@ os.chdir("cdist")
 | 
			
		|||
package_data = data_finder("conf")
 | 
			
		||||
os.chdir(cur)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
setup(
 | 
			
		||||
    name = "cdist",
 | 
			
		||||
    packages = ["cdist", "cdist.core", "cdist.exec", "cdist.util" ],
 | 
			
		||||
    name="cdist",
 | 
			
		||||
    packages=["cdist", "cdist.core", "cdist.exec", "cdist.util", ],
 | 
			
		||||
    package_data={'cdist': package_data},
 | 
			
		||||
    scripts = ["scripts/cdist"],
 | 
			
		||||
    version = cdist.version.VERSION,
 | 
			
		||||
    description = "A Usable Configuration Management System",
 | 
			
		||||
    author = "Nico Schottelius",
 | 
			
		||||
    author_email = "nico-cdist-pypi@schottelius.org",
 | 
			
		||||
    url = "http://www.nico.schottelius.org/software/cdist/",
 | 
			
		||||
    classifiers = [
 | 
			
		||||
    scripts=["scripts/cdist"],
 | 
			
		||||
    version=cdist.version.VERSION,
 | 
			
		||||
    description="A Usable Configuration Management System",
 | 
			
		||||
    author="Nico Schottelius",
 | 
			
		||||
    author_email="nico-cdist-pypi@schottelius.org",
 | 
			
		||||
    url="http://www.nico.schottelius.org/software/cdist/",
 | 
			
		||||
    classifiers=[
 | 
			
		||||
        "Development Status :: 6 - Mature",
 | 
			
		||||
        "Environment :: Console",
 | 
			
		||||
        "Intended Audience :: System Administrators",
 | 
			
		||||
| 
						 | 
				
			
			@ -57,10 +59,11 @@ setup(
 | 
			
		|||
        "Topic :: System :: Software Distribution",
 | 
			
		||||
        "Topic :: Utilities"
 | 
			
		||||
    ],
 | 
			
		||||
    long_description = '''
 | 
			
		||||
    long_description='''
 | 
			
		||||
        cdist is a usable configuration management system.
 | 
			
		||||
        It adheres to the KISS principle and is being used in small up to enterprise grade environments.
 | 
			
		||||
        cdist is an alternative to other configuration management systems like 
 | 
			
		||||
        It adheres to the KISS principle and is being used in small up to
 | 
			
		||||
        enterprise grade environments.
 | 
			
		||||
        cdist is an alternative to other configuration management systems like
 | 
			
		||||
        cfengine, bcfg2, chef and puppet.
 | 
			
		||||
    '''
 | 
			
		||||
)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue