This commit is contained in:
2019-09-05 09:37:02 +02:00
parent b04bfbc6a1
commit d5ff3c6afd
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -1,2 +1,2 @@
name = 'markdown_timesheet'
__version__ = '0.02'
__version__ = '0.04'

View File

@@ -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,
)