Skip to content

Commit

Permalink
Bumps version to 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Oct 29, 2014
1 parent 91279fe commit eea31b7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,6 @@
os.chdir(os.path.abspath(os.path.dirname(__file__)))


def list_files(d, root):
files = []
for e in os.listdir(os.path.join(root, d)):
if os.path.isdir(os.path.join(root, d, e)):
files.extend(list_files('%s/%s' % (d, e), root))
elif not e.endswith('.pyc'):
files.append('%s/%s' % (d, e))
return files


with open('README.rst') as fp:
description = fp.read()
setup(name='usagestats',
Expand Down
2 changes: 1 addition & 1 deletion usagestats.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys


__version__ = '0.1'
__version__ = '0.2'


logger = logging.getLogger('usagestats')
Expand Down

0 comments on commit eea31b7

Please sign in to comment.