mirror of
https://github.com/xcat2/confluent.git
synced 2025-01-18 05:33:17 +00:00
258e257939
When installing package, put a profile.d change such that confluent is in the default path.
13 lines
404 B
Cheetah
13 lines
404 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/nodehealth', 'bin/nodeidentify', 'bin/nodepower', 'bin/nodesensors', 'bin/nodesetboot'],
|
|
data_files=[('/etc/profile.d', ['confluent_env.sh'])],
|
|
)
|