diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..9cc563b --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,21 @@ +repos: + - repo: https://github.com/python/black.git + rev: 22.3.0 + hooks: + - id: black + files: '\.py$' + - repo: https://github.com/PyCQA/flake8 + rev: 5.0.4 + hooks: + - id: flake8 + name: flake8 + additional_dependencies: + - flake8-absolute-import + - flake8-black>=0.1.1 + entry: flake8 + files: '\.py$' + - repo: https://github.com/pycqa/isort.git + rev: 5.12.0 + hooks: + - id: isort + files: '\.py$' \ No newline at end of file diff --git a/version.py b/version.py index 485f44a..b3f4756 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.1.2"