Skip to content
Snippets Groups Projects
Commit 519c002b authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Change project name; Use namespaces

parent 1de75259
Branches
Tags
No related merge requests found
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name='bob.buildout.recipes', name='xbob.buildout',
version='0.1.0', version='0.1.0',
description="zc.buildout recipes to perform a variety of tasks required by Bob satellite packages", 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', url='http://github.com/bioidiap/bob.buildout.recipes',
license='GPLv3', license='GPLv3',
author='Andre Anjos', author='Andre Anjos',
...@@ -22,15 +22,20 @@ setup( ...@@ -22,15 +22,20 @@ setup(
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
namespace_packages = [
'xbob',
],
entry_points = { entry_points = {
'zc.buildout': [ 'zc.buildout': [
'external = bob_buildout.external:Recipe', 'external = xbob.buildout.external:Recipe',
'sphinx = bob_buildout.sphx:Recipe', 'sphinx = xbob.buildout.sphx:Recipe',
'nose = bob_buildout.nose:Recipe', 'nose = xbob.buildout.nose:Recipe',
], ],
}, },
install_requires=[ install_requires=[
'setuptools',
'Sphinx >= 1.0', 'Sphinx >= 1.0',
'nose', 'nose',
'zc.recipe.egg', 'zc.recipe.egg',
......
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
__import__('pkg_resources').declare_namespace(__name__)
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment