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