diff --git a/pyproject.toml b/pyproject.toml index ee65a22..a479278 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "vezzo" -version = "0.1.0" -description = "" +version = "1.0.0" +description = "A small library to verify that compatible versions of dependencies are installed before your tool can run properly." authors = ["Anders Goncalves da Silva "] readme = "README.md" packages = [{ include = "vezzo", from = "src" }] @@ -26,3 +26,32 @@ build-backend = "poetry.core.masonry.api" [tool.pytest.ini_options] addopts = ["--import-mode=importlib"] pythonpath = "src" + +[tool.black] +target-version = ['py38', 'py39', 'py310', 'py311'] +include = '\.pyi?$' +exclude = ''' +/( + \.eggs + | \.git + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | venv + | _build + | buck-out + | build + | dist + | tests/data +)/ +''' + +[tool.isort] +profile = "black" + +[tool.pylint.format] +max-line-length = "88" + +[tool.pylint.message] +disable = ["E1101", "R0912", "R0913", "R0914", "R0915", "C0301", "E1121"]