2014-05-06 19:01:35 +00:00
|
|
|
from setuptools import setup
|
2014-07-14 18:54:12 +00:00
|
|
|
import os
|
2014-05-06 19:01:35 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='confluent_server',
|
2014-07-14 18:54:12 +00:00
|
|
|
version='#VERSION#',
|
2014-05-06 19:01:35 +00:00
|
|
|
author='Jarrod Johnson',
|
|
|
|
author_email='jbjohnso@us.ibm.com',
|
|
|
|
url='http://xcat.sf.net/',
|
2014-05-06 20:45:51 +00:00
|
|
|
description='confluent systems management server',
|
|
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
|
|
|
'confluent/plugins/hardwaremanagement/',
|
|
|
|
'confluent/plugins/configuration/'],
|
|
|
|
install_requires=['pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
|
2014-05-09 20:43:44 +00:00
|
|
|
'pyghmi>=0.6.5'],
|
2014-05-06 19:01:35 +00:00
|
|
|
scripts=['bin/confluent'],
|
2015-01-21 21:35:22 +00:00
|
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
|
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
|
2014-05-06 19:01:35 +00:00
|
|
|
)
|