blob: ca26e7d1eb8fcb0b5c60c5133c40c4f78ed7d6b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[tool.poetry]
name = "miinaharava"
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"
[tool.poetry.group.dev.dependencies]
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 = ["src/miinaharava/"]
|