diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-11-13 23:46:45 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-11-13 23:46:45 +0530 |
commit | 9468226a9e2e2ab8cdd599f1d8538e860ca86120 (patch) | |
tree | 0a77ada226d6db80639f96b438bf83e4e756edb5 /env/bin/img2pdf | |
download | idcard-9468226a9e2e2ab8cdd599f1d8538e860ca86120.tar.gz idcard-9468226a9e2e2ab8cdd599f1d8538e860ca86120.tar.bz2 idcard-9468226a9e2e2ab8cdd599f1d8538e860ca86120.zip |
id card generator
Diffstat (limited to 'env/bin/img2pdf')
-rwxr-xr-x | env/bin/img2pdf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/env/bin/img2pdf b/env/bin/img2pdf new file mode 100755 index 0000000..8627e92 --- /dev/null +++ b/env/bin/img2pdf @@ -0,0 +1,33 @@ +#!/home/genos/IdCard/env/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'img2pdf==0.4.4','console_scripts','img2pdf' +import re +import sys + +# for compatibility with easy_install; see #2198 +__requires__ = 'img2pdf==0.4.4' + +try: + from importlib.metadata import distribution +except ImportError: + try: + from importlib_metadata import distribution + except ImportError: + from pkg_resources import load_entry_point + + +def importlib_load_entry_point(spec, group, name): + dist_name, _, _ = spec.partition('==') + matches = ( + entry_point + for entry_point in distribution(dist_name).entry_points + if entry_point.group == group and entry_point.name == name + ) + return next(matches).load() + + +globals().setdefault('load_entry_point', importlib_load_entry_point) + + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(load_entry_point('img2pdf==0.4.4', 'console_scripts', 'img2pdf')()) |