diff --git a/README.md b/README.md index f1d659d..813726c 100644 --- a/README.md +++ b/README.md @@ -3,19 +3,19 @@ [![Downloads](https://static.pepy.tech/badge/simtypes/month)](https://pepy.tech/project/simtypes) [![Downloads](https://static.pepy.tech/badge/simtypes)](https://pepy.tech/project/simtypes) -[![Coverage Status](https://coveralls.io/repos/github/pomponchik/simtypes/badge.svg?branch=main)](https://coveralls.io/github/pomponchik/simtypes?branch=main) -[![Lines of code](https://sloc.xyz/github/pomponchik/simtypes/?category=code)](https://github.com/boyter/scc/) -[![Hits-of-Code](https://hitsofcode.com/github/pomponchik/simtypes?branch=main&label=Hits-of-Code&exclude=docs/)](https://hitsofcode.com/github/pomponchik/simtypes/view?branch=main) -[![Test-Package](https://github.com/pomponchik/simtypes/actions/workflows/tests_and_coverage.yml/badge.svg)](https://github.com/pomponchik/simtypes/actions/workflows/tests_and_coverage.yml) +[![Coverage Status](https://coveralls.io/repos/github/mutating/simtypes/badge.svg?branch=main)](https://coveralls.io/github/mutating/simtypes?branch=main) +[![Lines of code](https://sloc.xyz/github/mutating/simtypes/?category=code)](https://github.com/boyter/scc/) +[![Hits-of-Code](https://hitsofcode.com/github/mutating/simtypes?branch=main&label=Hits-of-Code&exclude=docs/)](https://hitsofcode.com/github/mutating/simtypes/view?branch=main) +[![Test-Package](https://github.com/mutating/simtypes/actions/workflows/tests_and_coverage.yml/badge.svg)](https://github.com/mutating/simtypes/actions/workflows/tests_and_coverage.yml) [![Python versions](https://img.shields.io/pypi/pyversions/simtypes.svg)](https://pypi.python.org/pypi/simtypes) [![PyPI version](https://badge.fury.io/py/simtypes.svg)](https://badge.fury.io/py/simtypes) [![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/simtypes) +[![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/mutating/simtypes) -![logo](https://raw.githubusercontent.com/pomponchik/simtypes/develop/docs/assets/logo_2.svg) +![logo](https://raw.githubusercontent.com/mutating/simtypes/develop/docs/assets/logo_2.svg) Python type checking tools are usually very complex. In this case, we have thrown out almost all the places where there is a lot of complexity, and left only the most obvious and necessary things for runtime. @@ -168,7 +168,7 @@ print(check(-11, NonNegativeInt)) #> False ``` -In addition to other types, simtypes supports an extended type of sentinels from the [`denial`](https://github.com/pomponchik/denial/) library. In short, this is an extended `None`, for cases when we need to distinguish between situations where a value is undefined and situations where it is defined as undefined. Similar to `None`, objects of the `InnerNoneType` class can be used as type hints for themselves: +In addition to other types, simtypes supports an extended type of sentinels from the [`denial`](https://github.com/mutating/denial/) library. In short, this is an extended `None`, for cases when we need to distinguish between situations where a value is undefined and situations where it is defined as undefined. Similar to `None`, objects of the `InnerNoneType` class can be used as type hints for themselves: ```python from denial import InnerNoneType diff --git a/pyproject.toml b/pyproject.toml index 81aeca1..a10df27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "simtypes" -version = "0.0.10" +version = "0.0.11" authors = [{ name = "Evgeniy Blinov", email = "zheni-b@yandex.ru" }] description = 'Type checking in runtime without stupid games' readme = "README.md" @@ -51,5 +51,5 @@ format.quote-style = "single" markers = ["mypy_testing"] [project.urls] -'Source' = 'https://github.com/pomponchik/simtypes' -'Tracker' = 'https://github.com/pomponchik/simtypes/issues' +'Source' = 'https://github.com/mutating/simtypes' +'Tracker' = 'https://github.com/mutating/simtypes/issues'