mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-25 19:10:10 +00:00
00a33b05b7
a confluent_xcat RPM. This holds the related pieces that xCAT requires to use confluent and allows confluent to be standalone install. The confluent_xcat rpm has a dependency on confluent_server. The structure of confluent_xcat directory follows the other directories under the confluent project. (_server,_client,_common)
15 lines
460 B
Cheetah
15 lines
460 B
Cheetah
from setuptools import setup
|
|
import os
|
|
|
|
setup(
|
|
name='confluent_xcat',
|
|
version='#VERSION#',
|
|
author='Victor Hu',
|
|
author_email='vhu@us.ibm.com',
|
|
url='http://xcat.sf.net/',
|
|
description='xCAT integration with confluent systems management server',
|
|
#packages=['xcat'],
|
|
install_requires=['confluent_server > 1.0.0'],
|
|
data_files=[('/opt/confluent/lib/python/confluent/plugins/console/', ['confluent/plugins/console/xcathmc.sh'])],
|
|
)
|