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:
parent
2f5dede1b4
commit
6c7aaf8bc3
@ -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'],
|
||||
)
|
||||
|
@ -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)
|
||||
|
0
confluent_server/confluent/plugins/__init__.py
Normal file
0
confluent_server/confluent/plugins/__init__.py
Normal 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'],
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user