2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-05-01 12:57:45 +00:00
Files
confluent/confluent_server/setup.py.tmpl
Jarrod Johnson bfc27595dc Fold aiohmi into confluent
If someone asks for it independently, we can break it out again.  But for now,
assume it's only for confluent.
2026-04-30 08:48:24 -04:00

46 lines
1.8 KiB
Cheetah

from setuptools import setup
import os
setup(
name='confluent_server',
version='#VERSION#',
author='Lenovo',
author_email='jjohnson2@lenovo.com',
url='https://github.com/lenovo/confluent/',
license='Apache-2.0',
description='confluent systems management server',
long_description='confluent systems management server',
platforms=['Linux'],
packages=['confluent', 'confluent/config', 'confluent/interface',
'confluent/discovery/',
'confluent/discovery/protocols/',
'confluent/discovery/handlers/',
'confluent/networking/',
'confluent/plugins/hardwaremanagement/',
'confluent/plugins/deployment/',
'confluent/plugins/console/',
'confluent/plugins/info/',
'confluent/plugins/shell/',
'confluent/collective/',
'confluent/plugins/configuration/',
'aiohmi',
'aiohmi/cmd',
'aiohmi/ipmi',
'aiohmi/ipmi/oem',
'aiohmi/ipmi/oem/lenovo',
'aiohmi/ipmi/private',
'aiohmi/redfish',
'aiohmi/redfish/oem',
'aiohmi/redfish/oem/dell',
'aiohmi/redfish/oem/lenovo',
'aiohmi/redfish/oem/ami',
'aiohmi/util'],
scripts=['bin/confluent', 'bin/confluent_selfcheck', 'bin/confluentdbutil', 'bin/collective', 'bin/osdeploy'],
data_files=[('/etc/init.d', ['sysvinit/confluent']),
('/usr/lib/sysctl.d', ['sysctl/confluent.conf']),
('/opt/confluent/share/licenses/confluent_server', ['LICENSE', 'COPYRIGHT']),
('/usr/lib/systemd/system', ['systemd/confluent.service']),
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
)