mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
78b5cb15ce
xcathmc.sh is a xCAT console wrapper needed to be placed in the confluent consoles plugin directory. Talking with Jarrod, it was decided that confluent should stay stand-alone and xCAT should ship this and related "glue" items in a separate RPM. The empty 'console' directory should be owned by the confluent RPM
21 lines
706 B
Cheetah
21 lines
706 B
Cheetah
from setuptools import setup
|
|
import os
|
|
|
|
setup(
|
|
name='confluent_server',
|
|
version='#VERSION#',
|
|
author='Jarrod Johnson',
|
|
author_email='jbjohnso@us.ibm.com',
|
|
url='http://xcat.sf.net/',
|
|
description='confluent systems management server',
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
|
'confluent/plugins/hardwaremanagement/',
|
|
'confluent/plugins/configuration/'],
|
|
install_requires=['pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
|
|
'pyghmi>=0.6.5'],
|
|
scripts=['bin/confluent'],
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
)
|