File: hook-keyring.backend.py

package info (click to toggle)
python-keyring 3.8-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 504 kB
  • sloc: python: 3,099; makefile: 10
file content (10 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# Used by pyinstaller to expose hidden imports

# TODO: can this be loaded from keyring.backend directly?
_backend_mod_names = ('file', 'Gnome', 'Google', 'keyczar', 'kwallet', 'multi',
    'OS_X', 'pyfs', 'SecretService', 'Windows')

hiddenimports = [
    'keyring.backends.' + mod_name
    for mod_name in _backend_mod_names
]