diff --git a/README.md b/README.md index 2d381ff..a60d63e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A command line interface to total up the time entries in a markdown file. ## Usage ``` -$ pip install markdown_timesheet +$ pip install markdown-timesheet $ cat timesheet.md # 5 Sep 2019 diff --git a/app/__init__.py b/app/__init__.py index f63b68a..4cb97df 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,2 +1,2 @@ name = 'markdown_timesheet' -__version__ = '0.02' +__version__ = '0.04' diff --git a/setup.py b/setup.py index 4e5611b..018e4f4 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", ], - description="A quick way to add up time entries in a markdown document.", + description="CLI to add up time entries in a Markdown file.", license="MIT license", long_description=readme, long_description_content_type="text/markdown", @@ -37,6 +37,6 @@ setup( add=app.cli:cli """, url="https://github.com/zevaverbach/markdown_timesheet", - version="0.02", + version="0.04", zip_safe=False, )