A simple, elegant counter with support for counting multiple things at once.
0

Configure Feed

Select the types of activity you want to include in your feed.

Add `py.typed` for PEP561 compliance

Now tools like `mypy` can statically type check downstream usage of
`multicounter`.

Joseph Hale (May 27, 2022, 11:36 AM -0700) eb0c4ac8 3b423b6f

+11 -1
+10
multicounter/py.typed
··· 1 + // Copyright (c) 2022 Joseph Hale 2 + // 3 + // This Source Code Form is subject to the terms of the Mozilla Public 4 + // License, v. 2.0. If a copy of the MPL was not distributed with this 5 + // file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 + 7 + // This file enables PEP561 compliant type checkers like 8 + // [mypy](https://mypy.readthedocs.io/en/stable/index.html) 9 + // to consider the functions in this module as 10 + // **statically typed**.
+1 -1
pyproject.toml
··· 1 1 [tool.poetry] 2 2 name = "multicounter" 3 - version = "0.1.2" 3 + version = "0.1.3" 4 4 description = "A simple, elegant counter with support for counting multiple things at once." 5 5 authors = ["Joseph Hale <me@jhale.dev>"] 6 6 license = "MPL-2.0"