Setups click completion after install.
Project description
Click Completion Installer
Helps setting up click-completion when a pip package with click is installed. Supports
- bash
- fish (currently not implemented)
- zsh (currently not implemented)
Using in your setup.py (setuptools)
- append as requirement to your setup.py
REQUIRED = [ 'click', 'inquirer', 'arrow', 'pathlib', 'click-completion-helper', 'click-default-group' ]
...
class InstallCommand(install):
def run(self):
install.run(self)
self.setup_click_autocompletion()
def setup_click_autocompletion(self):
for console_script in setup_cfg['options']['entry_points']['console_scripts']:
console_call = console_script.split("=")[0].strip()
# if click completion helper is fresh installed and not available now
subprocess.run([
"click-completion-helper",
"setup",
console_call,
])
setup(
...
setup_requires=['click-completion-helper', ...],
...
)
or in setup.cfg:
[options]
setup_requires =
click-completion-helper
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file click-completion-helper-0.0.6.tar.gz
.
File metadata
- Download URL: click-completion-helper-0.0.6.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18ff796670641e22c4bd19831890d9a344dd0490cae4fa457f5b5e95e072fe43 |
|
MD5 | 479172c8a8382aafd6531cb876a30d97 |
|
BLAKE2b-256 | 0d50323ecf5260673a236fa2dc304096134d25c192c342577efdbabaf99da30b |