Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
bob.db.biosecure
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bob
bob.db.biosecure
Commits
bf58044f
Commit
bf58044f
authored
Aug 31, 2013
by
Laurent EL SHAFEY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Few fixes (copyright, keywords, etc) before python 3 compatible release
parent
fe6d18f8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
767 additions
and
5 deletions
+767
-5
COPYING
COPYING
+674
-0
MANIFEST.in
MANIFEST.in
+1
-1
setup.py
setup.py
+21
-3
__init__.py
xbob/db/biosecure/__init__.py
+14
-0
create.py
xbob/db/biosecure/create.py
+14
-0
driver.py
xbob/db/biosecure/driver.py
+14
-0
models.py
xbob/db/biosecure/models.py
+14
-0
query.py
xbob/db/biosecure/query.py
+14
-0
test.py
xbob/db/biosecure/test.py
+1
-1
No files found.
COPYING
0 → 100644
View file @
bf58044f
This diff is collapsed.
Click to expand it.
MANIFEST.in
View file @
bf58044f
include README.rst
include README.rst
bootstrap.py buildout.cfg COPYING
recursive-include docs *.py *.rst
recursive-include xbob *.sql3
setup.py
View file @
bf58044f
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <laurent.el-shafey@idiap.ch>
#
# Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
setuptools
import
setup
,
find_packages
...
...
@@ -9,12 +23,13 @@ from setuptools import setup, find_packages
setup
(
name
=
'xbob.db.biosecure'
,
version
=
'1.0.4
a0
'
,
version
=
'1.0.4'
,
description
=
'Biosecure Database Access API for Bob'
,
url
=
'http
://github.com/bioidiap
/xbob.db.biosecure'
,
url
=
'http
s://pypi.python.org/pypi
/xbob.db.biosecure'
,
license
=
'GPLv3'
,
author
=
'Laurent El Shafey'
,
author_email
=
'laurent.el-shafey@idiap.ch'
,
keywords
=
'face recognition, bob, xbob, xbob.db, Biosecure'
,
long_description
=
open
(
'README.rst'
)
.
read
(),
# This line is required for any distutils based packaging.
...
...
@@ -46,8 +61,11 @@ setup(
},
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Development Status :: 5 - Production/Stable'
,
'Environment :: Console'
,
'Intended Audience :: Developers'
,
'Intended Audience :: Education'
,
'Intended Audience :: Science/Research'
,
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
,
'Natural Language :: English'
,
'Programming Language :: Python'
,
...
...
xbob/db/biosecure/__init__.py
View file @
bf58044f
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <laurent.el-shafey@idiap.ch>
#
# Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""The Biosecure database
"""
...
...
xbob/db/biosecure/create.py
View file @
bf58044f
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <Laurent.El-Shafey@idiap.ch>
#
# Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""This script creates the Biosecure database in a single pass.
"""
...
...
xbob/db/biosecure/driver.py
View file @
bf58044f
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <laurent.el-shafey@idiap.ch>
#
# Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Bob Database Driver entry-point for the Biosecure database
"""
...
...
xbob/db/biosecure/models.py
View file @
bf58044f
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <laurent.el-shafey@idiap.ch>
#
# Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Table models and functionality for the Biosecure database.
"""
...
...
xbob/db/biosecure/query.py
View file @
bf58044f
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <Laurent.El-Shafey@idiap.ch>
#
# Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""This module provides the Dataset interface allowing the user to query the
Biosecure database in the most obvious ways.
...
...
xbob/db/biosecure/test.py
View file @
bf58044f
...
...
@@ -2,7 +2,7 @@
# vim: set fileencoding=utf-8 :
# Laurent El Shafey <laurent.el-shafey@idiap.ch>
#
# Copyright (C) 2011-201
2
Idiap Research Institute, Martigny, Switzerland
# Copyright (C) 2011-201
3
Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment