* Xml config provisioning is done for core, hdfs, mapred xmls * Removed xslt transformations from data nodes * At now Savanna contains default configs for Hadoop in resources/ * This version of default configs is applied for Hadoop 1.1.1 * No needs to distribute new cloud image Change-Id: Ia13e9231d75bbac3cff6291d477b72d727e21c71 Fixes: bug #1169900
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import setuptools
 | 
						|
 | 
						|
from savanna.openstack.common import setup as common_setup
 | 
						|
 | 
						|
requires = common_setup.parse_requirements()
 | 
						|
depend_links = common_setup.parse_dependency_links()
 | 
						|
project = 'savanna'
 | 
						|
 | 
						|
setuptools.setup(
 | 
						|
    name=project,
 | 
						|
    version=common_setup.get_version(project, '0.1.1'),
 | 
						|
    description='Savanna project',
 | 
						|
    author='Mirantis Inc.',
 | 
						|
    author_email='savanna-team@mirantis.com',
 | 
						|
    url='http://savanna.mirantis.com',
 | 
						|
    classifiers=[
 | 
						|
        'Environment :: OpenStack',
 | 
						|
        'Intended Audience :: Information Technology',
 | 
						|
        'Intended Audience :: System Administrators',
 | 
						|
        'License :: OSI Approved :: Apache Software License',
 | 
						|
        'Operating System :: POSIX :: Linux',
 | 
						|
        'Programming Language :: Python',
 | 
						|
        'Programming Language :: Python :: 2',
 | 
						|
        'Programming Language :: Python :: 2.7',
 | 
						|
    ],
 | 
						|
    license='Apache Software License',
 | 
						|
    cmdclass=common_setup.get_cmdclass(),
 | 
						|
    packages=setuptools.find_packages(exclude=['bin']),
 | 
						|
    package_data={'savanna': [
 | 
						|
        'resources/*.template',
 | 
						|
        'resources/*.xml'
 | 
						|
    ]},
 | 
						|
    install_requires=requires,
 | 
						|
    dependency_links=depend_links,
 | 
						|
    setup_requires=['setuptools-git>=0.4'],
 | 
						|
    include_package_data=True,
 | 
						|
    test_suite='nose.collector',
 | 
						|
    scripts=[
 | 
						|
        'bin/savanna-api',
 | 
						|
        'bin/savanna-manage',
 | 
						|
    ],
 | 
						|
    py_modules=[],
 | 
						|
    data_files=[
 | 
						|
        ('share/savanna',
 | 
						|
         [
 | 
						|
             'etc/savanna/savanna.conf.sample',
 | 
						|
             'etc/savanna/savanna.conf.sample-full',
 | 
						|
         ]),
 | 
						|
    ],
 | 
						|
)
 |