Skip to content

Commit e40263e

Browse files
committed
Prepare for version 1.0.0
1 parent fe2a9f2 commit e40263e

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ click-command-tree
44
**WARNING**: This has really only been tested with python3 and click 6 and 7. I plan to do better testing and integrate CI so find all
55
possible versions this can be used with.
66

7-
`click-command-tree` is a [click](https://github.com/pallets/click) plugin that provides a command to show the command tree of
8-
your project.
7+
`click-command-tree` is a [click](https://github.com/pallets/click) plugin to show the command tree of your CLI
98

109
example:
1110

click_command_tree.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import click
22

3+
__version__ = '1.0.0'
4+
35

46
@click.command(name='tree')
57
@click.pass_context

setup.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
1+
import pathlib
12
from setuptools import setup
23

4+
HERE = pathlib.Path(__file__).parent
5+
README = (HERE / 'README.md').read_text()
6+
37
setup(
48
name='click-command-tree',
5-
version='0.1.0',
6-
py_modules=['click_command_tree'],
9+
version='1.0.0',
10+
description='click plugin to show the command tree of your CLI',
11+
long_description=README,
12+
long_description_content_type='text/markdown',
13+
url='https://github.com/whwright/click-command-tree',
14+
author='Harrison Wright',
15+
author_email='mail@harrisonwright.me',
16+
license='MIT',
17+
classifiers=[
18+
'License :: OSI Approved :: MIT License',
19+
'Programming Language :: Python :: 3'
20+
],
21+
py_modules=['click_command_tree'],\
22+
include_package_data=True,
723
install_requires=[
824
'click',
925
],

0 commit comments

Comments
 (0)