2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Refine packaging issues

This commit is contained in:
Jarrod Johnson 2014-05-06 16:45:51 -04:00
parent 2f5dede1b4
commit 6c7aaf8bc3
8 changed files with 9 additions and 4 deletions

View File

@ -5,6 +5,7 @@ setup(
version='0.1.0',
author='Jarrod Johnson',
author_email='jbjohnso@us.ibm.com',
description='common content for confluent client and server',
url='http://xcat.sf.net/',
packages=['confluent'],
)

View File

@ -52,7 +52,7 @@ def nested_lookup(nestdict, key):
def load_plugins():
# To know our plugins directory, we get the parent path of 'bin'
path = os.path.dirname(os.path.realpath(__file__))
plugintop = os.path.realpath(os.path.join(path, '..', 'plugins'))
plugintop = os.path.realpath(os.path.join(path, 'plugins'))
plugins = set()
for plugindir in os.listdir(plugintop):
plugindir = os.path.join(plugintop, plugindir)

View File

@ -2,11 +2,15 @@ from setuptools import setup
setup(
name='confluent_server',
version='0.1.0',
version='0.1.1',
author='Jarrod Johnson',
author_email='jbjohnso@us.ibm.com',
url='http://xcat.sf.net/',
packages=['confluent', 'confluent/config', 'confluent/interface'],
install_requires=['pycrypto>=2.6', 'confluent_client>=0.1.0'],
description='confluent systems management server',
packages=['confluent', 'confluent/config', 'confluent/interface',
'confluent/plugins/hardwaremanagement/',
'confluent/plugins/configuration/'],
install_requires=['pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
'pyghmi>=0.6.0'],
scripts=['bin/confluent'],
)