Commit e6ed502c authored by Łukasz Nowak's avatar Łukasz Nowak

Merge slapos.recipe.siptester as slapos.recipebox:siptester

parent 5461eed6
......@@ -57,5 +57,6 @@ setup(name=name,
'nosqltestbed = slapos.recipe.nosqltestbed:NoSQLTestBed',
'proactive = slapos.recipe.proactive:Recipe',
'sheepdogtestbed = slapos.recipe.sheepdogtestbed:SheepDogTestBed',
'siptester = slapos.recipe.siptester:SipTesterRecipe',
]},
)
Changelog
=========
0.0.3 (2010-10-13)
----------------
- Use slapos.librecipe to simplify the recipe
0.0.2 (2010-10-13)
----------------
- Change erp5.recipe.siptesterinstance namespace to slapos.recipe.siptester
0.0.1 (2010-09-02)
----------------
- Initial version
[Romain Courteaud]
recursive-include src/erp5/recipe/siptesterinstance *.in
include README.txt
include CHANGES.txt
[egg_info]
tag_build = .dev
tag_svn_revision = 1
from setuptools import setup, find_packages
import os
name = "slapos.recipe.siptester"
version = '0.0.25'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description=( read('README.txt')
+ '\n' +
read('CHANGES.txt')
)
setup(
name = name,
version = version,
author = 'Romain Courteaud',
author_email = 'romain@nexedi.com',
description =
"zc.buildout recipe that instanciate a siptester",
long_description = long_description,
license = "GPL2",
keywords = "siptester buildout",
classifiers = [
"Framework :: Buildout :: Recipe",
],
package_dir = {'': 'src'},
packages = find_packages('src'),
namespace_packages = ['slapos', 'slapos.recipe'],
include_package_data = True,
install_requires = ['setuptools', 'slapos.lib.recipe'],
entry_points = {'zc.buildout': ['default = %s:CallerRecipe' % name,
'caller = %s:CallerRecipe' % name,
'receiver = %s:ReceiverRecipe' % 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