Skip to content

Commit 496709a

Browse files
authored
Merge pull request #12 from gahjelle/doc-tutorial-link
Doc tutorial link
2 parents 93e1a58 + 2c4731e commit 496709a

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 1.0.0
33
commit = True
44
tag = True
55

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Python Timer Functions: Three Ways to Monitor Your Code](https://files.realpython.com/media/Three-Ways-to-Time-Your-Code_Watermarked.8d561fcc7a35.jpg)](https://realpython.com/python-timer)
2+
13
# `codetiming` - A flexible, customizable timer for your Python code
24

35
[![Latest version](https://img.shields.io/pypi/v/codetiming.svg)](https://pypi.org/project/codetiming/)
@@ -14,6 +16,7 @@ $ python -m pip install codetiming
1416

1517
The source code is [available at GitHub](https://github.com/realpython/codetiming).
1618

19+
For a complete tutorial on how `codetiming` works, see [Python Timer Functions: Three Ways to Monitor Your Code](https://realpython.com/python-timer) on [Real Python](https://realpython.com/).
1720

1821
## Basic Usage
1922

codetiming/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ def stuff():
2525
from codetiming._timer import Timer, TimerError # noqa
2626

2727
# Versioning is handled by bump2version
28-
__version__ = "0.1.2"
28+
__version__ = "1.0.0"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[build-system]
2-
requires = ["flit"]
3-
build-backend = "flit.buildapi"
2+
requires = ["flit_core >=2,<3"]
3+
build-backend = "flit_core.buildapi"
44

55
[tool.flit.metadata]
66
module = "codetiming"
77
author = "Real Python"
88
author-email = "[email protected]"
9-
home-page = "https://realpython.com/"
9+
home-page = "https://realpython.com/python-timer"
1010
description-file = "README.md"
1111
classifiers = [
12-
"Development Status :: 4 - Beta",
12+
"Development Status :: 5 - Production/Stable",
1313
"Intended Audience :: Developers",
1414
"License :: OSI Approved :: MIT License",
1515
"Natural Language :: English",
@@ -35,7 +35,7 @@ requires = [
3535

3636
[tool.flit.metadata.urls]
3737
"Source Code" = "https://github.com/realpython/codetiming"
38-
38+
"Tutorial" = "https://realpython.com/python-timer"
3939

4040
[tool.flit.metadata.requires-extra]
4141
dev = ["black", "bump2version", "flake8", "flit", "mypy"]

0 commit comments

Comments
 (0)