2014-05-06 15:01:35 -04:00
|
|
|
from setuptools import setup
|
2017-01-27 15:23:16 -05:00
|
|
|
import os
|
|
|
|
|
|
|
|
scriptlist = ['bin/{0}'.format(d) for d in os.listdir('bin/')]
|
2014-05-06 15:01:35 -04:00
|
|
|
|
|
|
|
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'],
|
2017-01-27 15:23:16 -05:00
|
|
|
scripts=scriptlist,
|
2015-10-12 16:47:24 -04:00
|
|
|
data_files=[('/etc/profile.d', ['confluent_env.sh'])],
|
2014-05-06 15:01:35 -04:00
|
|
|
)
|