mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 01:22:00 +00:00
c56c1948a9
This enables PAM passwords to work by default, rather than requiring user to perform more configuration.
31 lines
1.3 KiB
Cheetah
31 lines
1.3 KiB
Cheetah
from setuptools import setup
|
|
import os
|
|
|
|
setup(
|
|
name='confluent_server',
|
|
version='#VERSION#',
|
|
author='Jarrod Johnson',
|
|
author_email='jjohnson2@lenovo.com',
|
|
url='http://xcat.sf.net/',
|
|
description='confluent systems management server',
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
|
'confluent/discovery/',
|
|
'confluent/discovery/protocols/',
|
|
'confluent/discovery/handlers/',
|
|
'confluent/networking/',
|
|
'confluent/plugins/hardwaremanagement/',
|
|
'confluent/plugins/shell/',
|
|
'confluent/collective/',
|
|
'confluent/plugins/configuration/'],
|
|
install_requires=['paramiko', 'pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
|
|
'dnspython', 'netifaces', 'pyte', 'pysnmp', 'pyparsing',
|
|
'pyghmi>=1.0.44'],
|
|
scripts=['bin/confluent', 'bin/confluentdbutil', 'bin/collective'],
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
|
('/etc/pam.d/', ['pam/confluent']),
|
|
('/usr/lib/sysctl.d', ['sysctl/confluent.conf']),
|
|
('/usr/lib/systemd/system', ['systemd/confluent.service']),
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
)
|