diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-02-17 09:41:48 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-02-17 09:41:48 +0200 |
commit | e785dbd4f726c5716f21071ed25dc35ac87c0c74 (patch) | |
tree | 781373b78380a1ffd1ea8c5dc8ceb2bd313631e9 /pyproject.toml | |
parent | 4eff4a32cfa594cc2a3df3885de92d407edc6675 (diff) |
Dev tools and directory structure rework.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml index fd1ea78..ca26e7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,10 @@ [tool.poetry] name = "miinaharava" -version = "0.1.0" +version = "0.1" description = "Miinaharava ratkaisijalla" authors = ["Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>"] readme = "README.md" +packages = [ { include = "miinaharava", from = "src" } ] [tool.poetry.dependencies] python = "^3.10" @@ -13,14 +14,18 @@ pytest = "^7.4.4" coverage = "^7.4.0" pylint = "^3.0.3" +[tool.poetry.scripts] +pylint = "dev:dev_pylint" +pytest = "dev:dev_pytest" +covhtml = "dev:dev_covhtml" +covxml = "dev:dev_covxml" +covff = "dev:dev_covff" +all = "dev:dev_all" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.pylint.main] recursive = true -source-roots = ["./"] - -[tool.pylint.basic] - -[tool.pylint.messages] +source-roots = ["src/miinaharava/"] |