diff --git a/setup.py b/setup.py index 7effb885c5c4ffc31d088678353abd3afbf0fdc3..5d064c639124fd5f4765fb77678b85d94a85fbfe 100644 --- a/setup.py +++ b/setup.py @@ -6,10 +6,10 @@ from setuptools import setup, find_packages setup( - name='bob.buildout.recipes', + name='xbob.buildout', version='0.1.0', description="zc.buildout recipes to perform a variety of tasks required by Bob satellite packages", - keywords=['buildout', 'sphinx', 'nose', 'recipe', 'eggs'], + keywords=['buildout', 'sphinx', 'nose', 'recipe', 'eggs', 'bob'], url='http://github.com/bioidiap/bob.buildout.recipes', license='GPLv3', author='Andre Anjos', @@ -22,15 +22,20 @@ setup( include_package_data=True, zip_safe=False, + namespace_packages = [ + 'xbob', + ], + entry_points = { 'zc.buildout': [ - 'external = bob_buildout.external:Recipe', - 'sphinx = bob_buildout.sphx:Recipe', - 'nose = bob_buildout.nose:Recipe', + 'external = xbob.buildout.external:Recipe', + 'sphinx = xbob.buildout.sphx:Recipe', + 'nose = xbob.buildout.nose:Recipe', ], }, install_requires=[ + 'setuptools', 'Sphinx >= 1.0', 'nose', 'zc.recipe.egg', diff --git a/xbob/__init__.py b/xbob/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..60381ea9b78a067c402bf65368cc63241b0d7456 --- /dev/null +++ b/xbob/__init__.py @@ -0,0 +1,2 @@ +#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages +__import__('pkg_resources').declare_namespace(__name__) diff --git a/bob_buildout/__init__.py b/xbob/buildout/__init__.py similarity index 100% rename from bob_buildout/__init__.py rename to xbob/buildout/__init__.py diff --git a/bob_buildout/external.py b/xbob/buildout/external.py similarity index 100% rename from bob_buildout/external.py rename to xbob/buildout/external.py diff --git a/bob_buildout/nose.py b/xbob/buildout/nose.py similarity index 100% rename from bob_buildout/nose.py rename to xbob/buildout/nose.py diff --git a/bob_buildout/sphx.py b/xbob/buildout/sphx.py similarity index 100% rename from bob_buildout/sphx.py rename to xbob/buildout/sphx.py diff --git a/bob_buildout/tools.py b/xbob/buildout/tools.py similarity index 100% rename from bob_buildout/tools.py rename to xbob/buildout/tools.py