2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 19:10:10 +00:00
confluent/confluent_xcat/setup.py.tmpl
Victor Hu 00a33b05b7 Create a new subdirectory for xcat related glue code which produces
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)
2015-02-02 16:47:27 -05:00

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'])],
)