Skip to content

Commit

Permalink
Release fix to #28 as v0.6.3
Browse files Browse the repository at this point in the history
 * tested fix of #32 also on Python 2.7
 * updated the installation instructions in the README
	(ttws is now available via PyPI)
  • Loading branch information
dietmarw committed Nov 21, 2014
1 parent 1c25070 commit e0295d8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ This will install (and update) *ttws* and also all its depenencies.

### Linux/Mac

$ sudo pip install -U https://github.com/dietmarw/trimtrailingwhitespaces/archive/v0.5.1.tar.gz
$ sudo pip install -U ttws

### Windows

C:\Python27\Scripts>pip.exe install -U https://github.com/dietmarw/trimtrailingwhitespaces/archive/v0.6.0.tar.gz
C:\Python27\Scripts>pip.exe install -U ttws

## Usage:

Usage: ttws [OPTIONS] <directory> [<directory> ...]

This script will recursively scan all text files in a given list of
directories and remove all trailing white space in every line as well
as multiple blank lines at the end of the file. Binary files and files
This script will recursively scan all text files in a given list of
directories and remove all trailing white space in every line as well
as multiple blank lines at the end of the file. Binary files and files
residing in '.bzr', '.cvs', '.git', '.hg', '.svn' directories are skipped.

Since the main application is for Modelica projects it expects all files
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"""

from setuptools import setup, find_packages
from os.path import join, dirname


CLASSIFIERS = """
Expand All @@ -24,8 +25,9 @@
META = {
'name': 'ttws',
'url': 'https://github.com/dietmarw/trimtrailingwhitespaces',
'version': '0.6.3-dev',
'version': '0.6.3',
'description': 'Script to remove trailing whitespaces from textfiles.',
'long_description': open(join(dirname(__file__), 'README.md')).read(),
'classifiers': CLASSIFIERS,
'license': 'UNLICENSE',
'author': 'Dietmar Winkler',
Expand Down

0 comments on commit e0295d8

Please sign in to comment.