From 18361e20ac0e9974ce136d9f4ee30cf195766879 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 14 May 2014 14:27:37 +0200 Subject: [PATCH] Namespace fixes --- MANIFEST.in | 4 ++-- README.rst | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9880b57..f6653d0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ include LICENSE README.rst bootstrap.py buildout.cfg recursive-include doc conf.py *.rst recursive-include xbob *.cpp *.h -recursive-include xbob/io/data *.* -recursive-include xbob/io/fonts *.txt *.ttf +recursive-include xbob/io/base/data *.* +recursive-include xbob/io/base/fonts *.txt *.ttf diff --git a/README.rst b/README.rst index da91ab2..52ad86b 100644 --- a/README.rst +++ b/README.rst @@ -2,22 +2,22 @@ .. Andre Anjos <andre.anjos@idiap.ch> .. Thu 29 Aug 2013 16:07:57 CEST -.. image:: https://travis-ci.org/bioidiap/xbob.io.svg?branch=master - :target: https://travis-ci.org/bioidiap/xbob.io -.. image:: https://coveralls.io/repos/bioidiap/xbob.io/badge.png - :target: https://coveralls.io/r/bioidiap/xbob.io -.. image:: http://img.shields.io/github/tag/bioidiap/xbob.io.png - :target: https://github.com/bioidiap/xbob.io -.. image:: http://img.shields.io/pypi/v/xbob.io.png - :target: https://pypi.python.org/pypi/xbob.io -.. image:: http://img.shields.io/pypi/dm/xbob.io.png - :target: https://pypi.python.org/pypi/xbob.io - -============================ - Python bindings for bob.io -============================ - -This package contains a set of Pythonic bindings for Bob's I/O functionality. +.. image:: https://travis-ci.org/bioidiap/xbob.io.base.svg?branch=master + :target: https://travis-ci.org/bioidiap/xbob.io.base +.. image:: https://coveralls.io/repos/bioidiap/xbob.io.base/badge.png + :target: https://coveralls.io/r/bioidiap/xbob.io.base +.. image:: http://img.shields.io/github/tag/bioidiap/xbob.io.base.png + :target: https://github.com/bioidiap/xbob.io.base +.. image:: http://img.shields.io/pypi/v/xbob.io.base.png + :target: https://pypi.python.org/pypi/xbob.io.base +.. image:: http://img.shields.io/pypi/dm/xbob.io.base.png + :target: https://pypi.python.org/pypi/xbob.io.base + +============================= + Python bindings for bob::io +============================= + +This package contains a set of Pythonic bindings for core Bob I/O functionality. Installation ------------ @@ -41,7 +41,7 @@ Testing You can run a set of tests using the nose test runner:: - $ nosetests -sv xbob.io + $ nosetests -sv xbob.io.base .. warning:: @@ -58,7 +58,7 @@ You can run our documentation tests using sphinx itself:: You can test overall test coverage with:: - $ nosetests --with-coverage --cover-package=xbob.io + $ nosetests --with-coverage --cover-package=xbob.io.base The ``coverage`` egg must be installed for this to work properly. -- GitLab