Skip to content

Commit

Permalink
update supported python versions and bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
twolffpiggott committed Mar 21, 2023
1 parent 431d608 commit 48ea29f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Toggl Tally

[![PyPI version](https://badge.fury.io/py/toggl-tally.svg)](https://badge.fury.io/py/toggl-tally)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/toggl-tally/0.1.1)](https://pypi.org/project/toggl-tally/) [![PyPI version](https://badge.fury.io/py/toggl-tally.svg)](https://badge.fury.io/py/toggl-tally)

[![Tests](https://github.com/twolffpiggott/toggl-tally/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/twolffpiggott/toggl-tally/actions/workflows/test.yml)

Toggl tally is a rich Python command line interface for tracking progress against your monthly project targets and calculating the daily hours you need to work to hit your goals. Toggl tally connects to the [Toggl Track API](https://developers.track.toggl.com/), and supports:
Expand Down
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@ build-backend = "setuptools.build_meta"

[project]
name = "toggl-tally"
version = "0.1.0"
version = "0.1.1"
description = "A rich CLI to track hours worked towards monthly targets with toggl"
readme = "README.md"
authors = [{ name = "Tim Wolff-Piggott", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["toggl", "cli", "track", "toggl-api", "command line"]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion toggl_tally/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from toggl_tally.report import RichReport
from toggl_tally.tally import TogglTally

__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit 48ea29f

Please sign in to comment.