From 48ea29f27884b8daa9f5fb06c319031f25d1a0e2 Mon Sep 17 00:00:00 2001 From: Tim Wolff-Piggott Date: Tue, 21 Mar 2023 21:31:48 +0200 Subject: [PATCH] update supported python versions and bump patch version --- README.md | 3 ++- pyproject.toml | 12 +++++++++--- toggl_tally/__init__.py | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3021b40..bdd57e7 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 12bad21..f33b7ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "twolffpiggott@gmail.com" }] 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 = [ diff --git a/toggl_tally/__init__.py b/toggl_tally/__init__.py index 15b4af1..46e4c53 100644 --- a/toggl_tally/__init__.py +++ b/toggl_tally/__init__.py @@ -3,4 +3,4 @@ from toggl_tally.report import RichReport from toggl_tally.tally import TogglTally -__version__ = "0.1.0" +__version__ = "0.1.1"