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

Rename the package as xbob.flandmark

parent 1e00e506
Branches
Tags
No related merge requests found
Showing with 12 additions and 6 deletions
......@@ -56,7 +56,7 @@ Usage
Pretty simple, just do something like::
import bob
import flandmark
from xbob import flandmark
video = bob.io.VideoReader('myvideo.avi')
localize = flandmark.Localizer()
......
......@@ -105,6 +105,10 @@ setup(
include_package_data=True,
zip_safe=False,
namespace_packages=[
"xbob",
],
install_requires=[
'setuptools',
'bob',
......@@ -112,16 +116,16 @@ setup(
entry_points = {
'console_scripts': [
'annotate.py = flandmark.script.annotate:main',
'annotate.py = xbob.flandmark.script.annotate:main',
],
},
ext_modules=[
setup_bob_extension("flandmark._flandmark",
setup_bob_extension("xbob.flandmark._flandmark",
[
"flandmark/ext/flandmark_detector.cpp",
"flandmark/ext/liblbp.cpp",
"flandmark/ext/ext.cpp",
"xbob/flandmark/ext/flandmark_detector.cpp",
"xbob/flandmark/ext/liblbp.cpp",
"xbob/flandmark/ext/ext.cpp",
])
],
......
#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
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