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',
|
2017-01-31 20:38:54 +00:00
|
|
|
author_email='jjohnson2@lenovo.com',
|
2014-05-06 19:01:35 +00:00
|
|
|
url='http://xcat.sf.net/',
|
2014-05-06 20:45:51 +00:00
|
|
|
description='confluent systems management server',
|
|
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
2017-06-20 18:56:24 +00:00
|
|
|
'confluent/discovery/',
|
|
|
|
'confluent/discovery/protocols/',
|
|
|
|
'confluent/discovery/handlers/',
|
|
|
|
'confluent/networking/',
|
2014-05-06 20:45:51 +00:00
|
|
|
'confluent/plugins/hardwaremanagement/',
|
2022-03-17 17:04:24 +00:00
|
|
|
'confluent/plugins/deployment/',
|
2019-11-20 15:04:38 +00:00
|
|
|
'confluent/plugins/console/',
|
2016-01-07 21:15:59 +00:00
|
|
|
'confluent/plugins/shell/',
|
2018-04-25 17:31:26 +00:00
|
|
|
'confluent/collective/',
|
2014-05-06 20:45:51 +00:00
|
|
|
'confluent/plugins/configuration/'],
|
2016-04-11 15:51:11 +00:00
|
|
|
install_requires=['paramiko', 'pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
|
2021-06-08 20:43:06 +00:00
|
|
|
'dnspython', 'netifaces', 'pysnmp', 'pyparsing',
|
2018-04-10 20:06:37 +00:00
|
|
|
'pyghmi>=1.0.44'],
|
2020-06-19 13:24:26 +00:00
|
|
|
scripts=['bin/confluent', 'bin/confluentdbutil', 'bin/collective', 'bin/osdeploy'],
|
2015-01-21 21:35:22 +00:00
|
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
2017-08-11 20:11:05 +00:00
|
|
|
('/usr/lib/sysctl.d', ['sysctl/confluent.conf']),
|
2022-04-25 20:48:31 +00:00
|
|
|
('/opt/confluent/share/licenses/confluent_server', ['LICENSE']),
|
2015-07-15 17:33:47 +00:00
|
|
|
('/usr/lib/systemd/system', ['systemd/confluent.service']),
|
2015-01-21 21:35:22 +00:00
|
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
|
2014-05-06 19:01:35 +00:00
|
|
|
)
|