2014-05-06 15:01:35 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='confluent_client',
|
2014-07-14 14:54:12 -04:00
|
|
|
version='#VERSION#',
|
2014-05-06 15:01:35 -04:00
|
|
|
author='Jarrod Johnson',
|
2015-03-25 13:52:59 -04:00
|
|
|
author_email='jjohnson2@lenovo.com',
|
2014-05-06 15:01:35 -04:00
|
|
|
url='http://xcat.sf.net/',
|
|
|
|
packages=['confluent'],
|
2016-05-24 14:36:36 -04:00
|
|
|
scripts=['bin/confetty', 'bin/nodeconsole', 'bin/nodeeventlog',
|
|
|
|
'bin/nodefirmware', 'bin/nodehealth', 'bin/nodeidentify',
|
2016-05-24 14:38:44 -04:00
|
|
|
'bin/nodeinventory', 'bin/nodelist', 'bin/nodepower',
|
2016-05-24 14:36:36 -04:00
|
|
|
'bin/nodesensors', 'bin/nodesetboot'],
|
2015-10-12 16:47:24 -04:00
|
|
|
data_files=[('/etc/profile.d', ['confluent_env.sh'])],
|
2014-05-06 15:01:35 -04:00
|
|
|
)
|