Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Sep 26, 2021
1 parent 519a00c commit 2d68d33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A utility for keeping line lengths within [PEP 8](https://www.python.org/dev/pep
## Features

- An easy-to-use CLI (command-line interface)
- Parse either a single file or a directory
- Parse a single file, directory, or multiple directories
- Exclude files and directories from parsing
- Extend acceptable length to 99 chars situationally
- No dependencies!
Expand Down Expand Up @@ -46,6 +46,9 @@ To get started checking your python projects with len8:
# Parse all files in the cwd
len8 .

# Parse all files in two particular directories
len8 my_package tests

# Excluding file 'config.py' and directory 'secrets'
# By default '.venv', 'venv', and '.nox' are excluded
len8 -x config.py,secrets .
Expand Down
2 changes: 1 addition & 1 deletion len8/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__productname__ = "len8"
__version__ = "0.2.0"
__version__ = "0.2.0.post1"
__description__ = "A utility for keeping line lengths within PEP 8 standards."
__url__ = "https://github.com/parafoxia/len8"
__docs__ = "https://len8.readthedocs.io/en/latest/"
Expand Down

0 comments on commit 2d68d33

Please sign in to comment.