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

Add function to print comprehensive dependence list

parent 71ac5167
No related branches found
No related tags found
No related merge requests found
......@@ -130,5 +130,24 @@ def cmc(cmc_scores):
return cumulative_match_characteristic
def get_config():
"""Returns a string containing the configuration information.
"""
import pkg_resources
from .version import externals
packages = pkg_resources.require(__name__)
this = packages[0]
deps = packages[1:]
retval = "%s: %s (%s)\n" % (this.key, this.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()
# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment