[go: up one dir, main page]

File: pyoxidizer.bzl

package info (click to toggle)
linkchecker 10.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,116 kB
  • sloc: python: 13,131; makefile: 134; sh: 71; xml: 36; sql: 20; javascript: 19; php: 2
file content (13 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
def make_exe():
    dist = default_python_distribution()
    python_config = dist.make_python_interpreter_config()
    python_config.run_module = "linkcheck"
    exe = dist.to_python_executable(
        name="linkchecker",
        config=python_config,
    )
    exe.add_python_resources(exe.pip_install([CWD]))
    return exe

register_target("exe", make_exe)
resolve_targets()