2014-05-06 19:01:35 +00:00
|
|
|
from setuptools import setup
|
2017-01-27 20:23:16 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
scriptlist = ['bin/{0}'.format(d) for d in os.listdir('bin/')]
|
2014-05-06 19:01:35 +00:00
|
|
|
|
|
|
|
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'],
|
2017-01-27 20:23:16 +00:00
|
|
|
scripts=scriptlist,
|
2017-05-03 12:21:36 +00:00
|
|
|
data_files=[('/etc/profile.d', ['confluent_env.sh','confluent_env.csh'])],
|
2014-05-06 19:01:35 +00:00
|
|
|
)
|