diff --git a/README.md b/README.md index 4c0459e..8a82b00 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ A tool for helping developers staying compliant within their software projects. The tool crawls dependencies and logs their licenses, allowing to document and restrict certain licenses within a software project. -**DISCLAIMER**: There is no guarentee that all sublicenses or licenses will be identified and reported. For highest ensurance, use lock files to also catch sub-dependencies. However, this only looks within the given package manager, meaning C libraries an alike will not be reported here. +**DISCLAIMER**: _There is no guarentee that all sublicenses or licenses will be identified and reported. For highest ensurance, use lock files to also catch sub-dependencies. However, this only looks within the given package manager, meaning C libraries and alike will not be reported here._ ## Features diff --git a/loglicense/utils.py b/loglicense/utils.py index c48c50d..bbec268 100644 --- a/loglicense/utils.py +++ b/loglicense/utils.py @@ -4,7 +4,7 @@ from typing import List from typing import Set -import pkg_resources +import pkg_resources # type: ignore import toml diff --git a/pyproject.toml b/pyproject.toml index 75e518f..b68e4a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "loglicense" -version = "0.1.0" +version = "0.1.1" description = "Log License" authors = ["Martin Closter Jespersen "] license = "Apache-2.0"