This program does XYZ.
This program supports ABC.
Additional features include 123.
Download the files and install locally with pip. Requires Python 3 and the click package (this should be installed automatically because it's a required package).
| ''' Tool for FUNCTION and FUNCTION. ''' | |
| # Better description of thing. | |
| import os | |
| import click | |
| # used to tell Click that -h is shorthand for help | |
| CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help']) | |
| from setuptools import setup | |
| setup( | |
| name='EXEC_NAME', | |
| version='1.0', | |
| py_modules=['MAIN', 'FILE2'], | |
| install_requires=['Click'], | |
| entry_points=''' | |
| [console_scripts] | |
| MAIN=MAIN:cli |