-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert scripts to the format used by console_scripts
Split from #474
- Loading branch information
1 parent
bf16e04
commit c26a1db
Showing
6 changed files
with
168 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env python3 | ||
# PYTHON_ARGCOMPLETE_OK | ||
|
||
# Copyright 2012-2023, Andrey Kislyuk and argcomplete contributors. | ||
# Licensed under the Apache License. See https://github.com/kislyuk/argcomplete for more info. | ||
|
||
import sys | ||
from argcomplete.scripts import activate_global_python_argcomplete | ||
sys.exit(activate_global_python_argcomplete()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Copyright 2012-2023, Andrey Kislyuk and argcomplete contributors. | ||
# Licensed under the Apache License. See https://github.com/kislyuk/argcomplete for more info. | ||
|
||
import sys | ||
from argcomplete.scripts import python_argcomplete_check_easy_install_script | ||
sys.exit(python_argcomplete_check_easy_install_script()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright 2012-2023, Andrey Kislyuk and argcomplete contributors. | ||
# Licensed under the Apache License. See https://github.com/kislyuk/argcomplete for more info. | ||
|
||
import sys | ||
from argcomplete.scripts import register_python_argcomplete | ||
sys.exit(register_python_argcomplete()) |