Skip to content
This repository has been archived by the owner on Feb 5, 2023. It is now read-only.

Commit

Permalink
v0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhan Li committed Feb 26, 2021
1 parent 36099fe commit 37ded5d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,8 +1,8 @@
# timework

[![PyPI](https://img.shields.io/pypi/v/timework)](https://pypi.org/project/timework/)
[![CodeFactor](https://www.codefactor.io/repository/github/bugstop/python-timework/badge)](https://www.codefactor.io/repository/github/bugstop/python-timework)
[![Coverage Status](https://coveralls.io/repos/github/bugstop/python-timework/badge.svg?branch=master)](https://coveralls.io/github/bugstop/python-timework?branch=master)
[![pypi](https://img.shields.io/pypi/v/timework)](https://pypi.org/project/timework/)
[![codefactor](https://www.codefactor.io/repository/github/bugstop/python-timework/badge)](https://www.codefactor.io/repository/github/bugstop/python-timework)
[![coverage](https://coveralls.io/repos/github/bugstop/python-timework/badge.svg?branch=master)](https://coveralls.io/github/bugstop/python-timework?branch=master)
[![platform](https://img.shields.io/badge/platform-linux%20%7C%20macos%20%7C%20windows-red)](https://github.com/bugstop/python-timework)

measure / limit execution time using with-statements or decorators, cross-platform
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Expand Up @@ -5,10 +5,12 @@

setuptools.setup(
name="timework",
version="0.4.1",
version="0.4.3",
author="bugstop",
author_email="pypi@isaacx.com",
description="measure / limit execution time using with-statements or decorators, cross-platform",
description="measure / limit execution time"
" using with-statements or"
" decorators, cross-platform",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bugstop/python-timework",
Expand Down
8 changes: 4 additions & 4 deletions timework/__init__.py
@@ -1,5 +1,5 @@
"""
timework 0.4.1
timework 0.4.3
MIT License © bugstop
Expand All @@ -9,14 +9,14 @@
measure / limit execution time using with-statements or decorators, cross-platform
timework.Stopwatch() - a with statement class for stopwatch
timework.timer() - a decorator measuring the execution time
timework.limit() - a decorator limiting the execution time
timework.Stopwatch() - a with statement class for stopwatch
"""


from .timework import *

__name__ = 'timework'
__version__ = '0.4.1'
__all__ = ['timer', 'limit', 'Stopwatch']
__version__ = '0.4.3'
__all__ = ['Stopwatch', 'timer', 'limit']

0 comments on commit 37ded5d

Please sign in to comment.