Skip to content
Snippets Groups Projects
Commit cb7a6b88 authored by Manuel Günther's avatar Manuel Günther
Browse files

Merge branch 'master' of github.com:bioidiap/bob.bio.face

parents 4122ad67 add0abb7
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ def _check_database(database, groups = ('dev',), protocol = None, training_depen ...@@ -34,7 +34,7 @@ def _check_database(database, groups = ('dev',), protocol = None, training_depen
if protocol: database.protocol = protocol if protocol: database.protocol = protocol
assert len(database.all_files()) > 0 assert len(database.all_files()) > 0
assert len(database.training_files('train_extractor')) > 0 assert len(database.training_files('train_extractor')) > 0
assert len(database.training_files('train_enroller', arrange_by_client = True)) > 0 assert len(database.arrange_by_client(database.training_files('train_enroller'))) > 0
for group in groups: for group in groups:
model_ids = database.model_ids(group) model_ids = database.model_ids(group)
......
...@@ -62,6 +62,7 @@ setup( ...@@ -62,6 +62,7 @@ setup(
# This line is required for any distutils based packaging. # This line is required for any distutils based packaging.
packages = find_packages(), packages = find_packages(),
include_package_data = True, include_package_data = True,
zip_safe=False,
# This line defines which packages should be installed when you "install" # This line defines which packages should be installed when you "install"
# this package. All packages that are mentioned here, but are not installed # this package. All packages that are mentioned here, but are not installed
......
2.0.3b0 2.0.4b0
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment