diff --git a/Cargo.lock b/Cargo.lock index ce3c685..818935a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,7 +119,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "complexipy" -version = "0.2.1" +version = "0.2.2" dependencies = [ "env_logger", "ignore", diff --git a/Cargo.toml b/Cargo.toml index e42327f..3601912 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "complexipy" -version = "0.2.1" +version = "0.2.2" edition = "2021" authors = ["Robin Quintero "] license = "MIT" description = "An extremely fast Python library to calculate the cognitive complexity of python files, written in Rust." readme = "README.md" homepage = "https://github.com/rohaquinlop/complexipy" +documentation = "https://rohaquinlop.github.io/complexipy/" repository = "https://github.com/rohaquinlop/complexipy" exclude = ["/tests", ".github", ".gitignore", "targets"] diff --git a/README.md b/README.md index 8065e73..365074a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # complexipy

- complexipy + complexipy

@@ -79,7 +79,7 @@ The cognitive complexity of the file is 1, and the output of the command `complexipy path/to/file.py` will be: ```txt -─────────────────────── complexipy 0.2.1 🐙 ─────────────────────── +─────────────────────── complexipy 0.2.2 🐙 ─────────────────────── - Finished analysis in test_decorator.py ──────────────────── 🎉 Analysis completed!🎉 ───────────────────── Summary diff --git a/complexipy/main.py b/complexipy/main.py index 51296ad..0521a81 100644 --- a/complexipy/main.py +++ b/complexipy/main.py @@ -11,7 +11,7 @@ root_dir = Path(__file__).resolve().parent.parent app = typer.Typer(name="complexipy") console = Console() -version = "0.2.1" +version = "0.2.2" @app.command() diff --git a/docs/index.md b/docs/index.md index 56f55d0..4bd693d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -79,7 +79,7 @@ The cognitive complexity of the file is 1, and the output of the command `complexipy path/to/file.py` will be: ```txt -─────────────────────── complexipy 0.2.1 🐙 ─────────────────────── +─────────────────────── complexipy 0.2.2 🐙 ─────────────────────── - Finished analysis in test_decorator.py ──────────────────── 🎉 Analysis completed!🎉 ───────────────────── Summary diff --git a/pyproject.toml b/pyproject.toml index d346c39..de23b02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "maturin" [project] name = "complexipy" +keywords = ["cognitive", "complexity", "cognitive complexity", "rust", "fast"] requires-python = ">=3.11" classifiers = [ "Programming Language :: Rust",