Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import click
  2.  
  3. # the version number to show. If None Click attempts an auto discovery via setuptools.
  4. VERSION = "0.1"
  5.  
  6. @click.group()
  7. @clik.version_option(VERSION, "-v", "--version")
  8. def cli():
  9. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement