2014-05-06 15:01:35 -04:00
|
|
|
from setuptools import setup
|
2014-07-14 14:54:12 -04:00
|
|
|
import os
|
2014-05-06 15:01:35 -04:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='confluent_server',
|
2014-07-14 14:54:12 -04:00
|
|
|
version='#VERSION#',
|
2022-09-30 10:43:18 -04:00
|
|
|
author='Lenovo',
|
2017-01-31 15:38:54 -05:00
|
|
|
author_email='jjohnson2@lenovo.com',
|
2022-09-30 10:43:18 -04:00
|
|
|
url='https://github.com/lenovo/confluent/',
|
|
|
|
license='Apache-2.0',
|
2014-05-06 16:45:51 -04:00
|
|
|
description='confluent systems management server',
|
2022-09-30 10:43:18 -04:00
|
|
|
long_description='confluent systems management server',
|
|
|
|
platforms=['Linux'],
|
2014-05-06 16:45:51 -04:00
|
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
2017-06-20 14:56:24 -04:00
|
|
|
'confluent/discovery/',
|
|
|
|
'confluent/discovery/protocols/',
|
|
|
|
'confluent/discovery/handlers/',
|
|
|
|
'confluent/networking/',
|
2014-05-06 16:45:51 -04:00
|
|
|
'confluent/plugins/hardwaremanagement/',
|
2022-03-17 13:04:24 -04:00
|
|
|
'confluent/plugins/deployment/',
|
2019-11-20 10:04:38 -05:00
|
|
|
'confluent/plugins/console/',
|
2024-01-12 10:52:49 -05:00
|
|
|
'confluent/plugins/info/',
|
2016-01-07 16:15:59 -05:00
|
|
|
'confluent/plugins/shell/',
|
2018-04-25 13:31:26 -04:00
|
|
|
'confluent/collective/',
|
2014-05-06 16:45:51 -04:00
|
|
|
'confluent/plugins/configuration/'],
|
2016-04-11 11:51:11 -04:00
|
|
|
install_requires=['paramiko', 'pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
|
2021-06-08 16:43:06 -04:00
|
|
|
'dnspython', 'netifaces', 'pysnmp', 'pyparsing',
|
2018-04-10 16:06:37 -04:00
|
|
|
'pyghmi>=1.0.44'],
|
2022-09-02 09:53:06 -04:00
|
|
|
scripts=['bin/confluent', 'bin/confluent_selfcheck', 'bin/confluentdbutil', 'bin/collective', 'bin/osdeploy'],
|
2015-01-21 16:35:22 -05:00
|
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
2017-08-11 16:11:05 -04:00
|
|
|
('/usr/lib/sysctl.d', ['sysctl/confluent.conf']),
|
2022-09-30 10:43:18 -04:00
|
|
|
('/opt/confluent/share/licenses/confluent_server', ['LICENSE', 'COPYRIGHT']),
|
2015-07-15 13:33:47 -04:00
|
|
|
('/usr/lib/systemd/system', ['systemd/confluent.service']),
|
2015-01-21 16:35:22 -05:00
|
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
|
2014-05-06 15:01:35 -04:00
|
|
|
)
|