2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00
confluent/confluent_server/setup.py.tmpl
2022-09-30 10:43:18 -04:00

36 lines
1.5 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/shell/',
'confluent/collective/',
'confluent/plugins/configuration/'],
install_requires=['paramiko', 'pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
'dnspython', 'netifaces', 'pysnmp', 'pyparsing',
'pyghmi>=1.0.44'],
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/', [])],
)