Skip to content

Commit

Permalink
Bump version, add description, and black and pylint config
Browse files Browse the repository at this point in the history
  • Loading branch information
andersgs committed Mar 17, 2023
1 parent b05e22e commit 5778347
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <andersgs@gmail.com>"]
readme = "README.md"
packages = [{ include = "vezzo", from = "src" }]
Expand All @@ -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"]

0 comments on commit 5778347

Please sign in to comment.