Commit 843b39a3 authored by Łukasz Nowak's avatar Łukasz Nowak

Merge slapos.recipe.libcloud as slapos.recipebox:libcloud

parent add12eb2
...@@ -35,6 +35,7 @@ setup(name=name, ...@@ -35,6 +35,7 @@ setup(name=name,
'setuptools', # namespaces 'setuptools', # namespaces
'slapos.lib.recipe', # makes instantiation recipes simpler 'slapos.lib.recipe', # makes instantiation recipes simpler
'slapos.slap', # uses internally 'slapos.slap', # uses internally
# 'slapos.tool.cloudmgr', # needed for libclouds # disabled, as not available
'xml_marshaller', # need to communication with slapgrid 'xml_marshaller', # need to communication with slapgrid
'zc.buildout', # plays with buildout 'zc.buildout', # plays with buildout
'zc.recipe.egg', # for scripts generation 'zc.recipe.egg', # for scripts generation
......
0.0.3 (unreleased)
------------------
0.0.2 (2010-10-22)
------------------
- Working version
0.0.1 (2010-09-28)
------------------
- Initial release
[Lukasz Nowak]
[egg_info]
tag_build = .dev
tag_svn_revision = 1
from setuptools import setup, find_packages
version = '0.0.3'
name = 'slapos.recipe.libcloud'
long_description = open("README.txt").read() + "\n" + open("CHANGES.txt").read()
setup(name=name,
version=version,
description="Slapified buildout recipe to interact with libcloud",
long_description=long_description,
classifiers=[
"Framework :: Buildout :: Recipe",
"Programming Language :: Python",
],
keywords='slap recipe libcloud',
license='undecided',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['slapos', 'slapos.recipe'],
include_package_data=True,
install_requires=[
'slapos.tool.cloudmgr',
'setuptools',
'slapos.lib.recipe',
'zc.buildout',
'zc.recipe.egg',
],
zip_safe=True,
entry_points={'zc.buildout': ['default = %s:Recipe' % name]}
)
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment