diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4dfcd9e..276ae8a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -56,7 +56,10 @@ repos: hooks: - id: "poetry-check" - id: "poetry-lock" - args: ["--check"] + args: ["--check", "--no-update"] - id: "poetry-export" name: 'poetry export main' args: [ "--without-hashes", "--only", "main", "-f", "requirements.txt", "-o", "requirements/requirements.txt" ] + - id: "poetry-export" + name: 'poetry export dev' + args: [ "--without-hashes", "--with", "dev", "--with", "docs", "--with", "jupyter", "-f", "requirements.txt", "-o", "requirements/requirements-dev.txt" ] diff --git a/pyproject.toml b/pyproject.toml index 511cac7..9e2c276 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "r4m-public" version = "0.1.0" description = "" -authors = ["ΘΑΝΑΣΗΣ ΑΡΓΥΡΙΟΥ "] +authors = ["Thanasis Argyriou "] readme = "README.md" [tool.poetry.dependencies]