mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
99e97fe5c4
The noderun command was not being packaged. Correct the oversight so that it will be in packages.
16 lines
554 B
Cheetah
16 lines
554 B
Cheetah
from setuptools import setup
|
|
|
|
setup(
|
|
name='confluent_client',
|
|
version='#VERSION#',
|
|
author='Jarrod Johnson',
|
|
author_email='jjohnson2@lenovo.com',
|
|
url='http://xcat.sf.net/',
|
|
packages=['confluent'],
|
|
scripts=['bin/confetty', 'bin/nodeconsole', 'bin/nodeeventlog',
|
|
'bin/nodefirmware', 'bin/nodehealth', 'bin/nodeidentify',
|
|
'bin/nodeinventory', 'bin/nodelist', 'bin/nodepower',
|
|
'bin/nodesensors', 'bin/nodesetboot', 'bin/noderun'],
|
|
data_files=[('/etc/profile.d', ['confluent_env.sh'])],
|
|
)
|