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

Based get_config on bob.extension

parent 288ea038
No related branches found
No related tags found
No related merge requests found
...@@ -197,22 +197,7 @@ open = File ...@@ -197,22 +197,7 @@ open = File
def get_config(): def get_config():
"""Returns a string containing the configuration information. """Returns a string containing the configuration information.
""" """
return bob.extension.get_config(__name__, version.externals, version.api)
import pkg_resources
from .version import externals
packages = pkg_resources.require(__name__)
this = packages[0]
deps = packages[1:]
retval = "%s: %s [api=0x%04x] (%s)\n" % (this.key, this.version,
__api_version__, this.location)
retval += " - c/c++ dependencies:\n"
for k in sorted(externals): retval += " - %s: %s\n" % (k, externals[k])
retval += " - python dependencies:\n"
for d in deps: retval += " - %s: %s (%s)\n" % (d.key, d.version, d.location)
return retval.strip()
def get_include_directories(): def get_include_directories():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment