Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@

[![Downloads](https://static.pepy.tech/badge/sigmatch/month)](https://pepy.tech/project/sigmatch)
[![Downloads](https://static.pepy.tech/badge/sigmatch)](https://pepy.tech/project/sigmatch)
[![Coverage Status](https://coveralls.io/repos/github/pomponchik/sigmatch/badge.svg?branch=main)](https://coveralls.io/github/pomponchik/sigmatch?branch=main)
[![Lines of code](https://sloc.xyz/github/pomponchik/sigmatch/?category=code)](https://github.com/boyter/scc/)
[![Hits-of-Code](https://hitsofcode.com/github/pomponchik/sigmatch?branch=main)](https://hitsofcode.com/github/pomponchik/sigmatch/view?branch=main)
[![Test-Package](https://github.com/pomponchik/sigmatch/actions/workflows/tests_and_coverage.yml/badge.svg)](https://github.com/pomponchik/sigmatch/actions/workflows/tests_and_coverage.yml)
[![Coverage Status](https://coveralls.io/repos/github/mutating/sigmatch/badge.svg?branch=main)](https://coveralls.io/github/mutating/sigmatch?branch=main)
[![Lines of code](https://sloc.xyz/github/mutating/sigmatch/?category=code)](https://github.com/boyter/scc/)
[![Hits-of-Code](https://hitsofcode.com/github/mutating/sigmatch?branch=main)](https://hitsofcode.com/github/mutating/sigmatch/view?branch=main)
[![Test-Package](https://github.com/mutating/sigmatch/actions/workflows/tests_and_coverage.yml/badge.svg)](https://github.com/mutating/sigmatch/actions/workflows/tests_and_coverage.yml)
[![Python versions](https://img.shields.io/pypi/pyversions/sigmatch.svg)](https://pypi.python.org/pypi/sigmatch)
[![PyPI version](https://badge.fury.io/py/sigmatch.svg)](https://badge.fury.io/py/sigmatch)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/pomponchik/sigmatch)
[![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/mutating/sigmatch)


</details>

![logo](https://raw.githubusercontent.com/pomponchik/sigmatch/develop/docs/assets/logo_3.svg)
![logo](https://raw.githubusercontent.com/mutating/sigmatch/develop/docs/assets/logo_3.svg)


This small library allows you to quickly check whether any called object matches the signature you expect. This may be useful to you, for example, if you write libraries that work with callbacks.
Expand All @@ -43,7 +43,7 @@ You can also quickly try out this and other packages without having to install u

## Usage

To check the signature of a called object, you first need to «bake» your expectations into a special object. Here's how to do it:
To check the signature of a callable, you first need to «bake» your expectations into a special object. Here's how to do it:

```python
from sigmatch import PossibleCallMatcher
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sigmatch"
version = "0.0.6"
version = "0.0.7"
authors = [
{ name="Evgeniy Blinov", email="zheni-b@yandex.ru" },
]
Expand All @@ -21,7 +21,6 @@ classifiers = [
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down Expand Up @@ -49,5 +48,5 @@ lint.select = ["ERA001", "YTT", "ASYNC", "BLE", "B", "A", "COM", "INP", "PIE", "
format.quote-style = "single"

[project.urls]
'Source' = 'https://github.com/pomponchik/sigmatch'
'Tracker' = 'https://github.com/pomponchik/sigmatch/issues'
'Source' = 'https://github.com/mutating/sigmatch'
'Tracker' = 'https://github.com/mutating/sigmatch/issues'
Loading