from setuptools import setup
import os

scriptlist = ['bin/{0}'.format(d) for d in os.listdir('bin/')]

setup(
    name='confluent_client',
    version='#VERSION#',
    author='Jarrod Johnson',
    author_email='jjohnson2@lenovo.com',
    url='http://xcat.sf.net/',
    packages=['confluent'],
    scripts=scriptlist,
    data_files=[('/etc/profile.d', ['confluent_env.sh'])],
)