pyproject.toml 968 Bytes
Newer Older
Matteo Spanio's avatar
Matteo Spanio committed
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
32
33
34
35
36
[tool.poetry]
name = "tape-irregularity-classifier"
version = "1.1.0"
description = "MPAI CAE-ARP Tape Irregularity Classifier"
repository = "https://gitlab.dei.unipd.it/mpai/tape-irregularity-classifier.git"
authors = [
    "Matteo Spanio <dev2@audioinnova.com>",
    "Nadir Dalla Pozza <nadir.dallapozza@unipd.it>"
]
license = "GPLv3"
readme = "README.md"
packages = [{ include = "tape_irregularity_classifier", from = "src" }]

[tool.poetry.dependencies]
python = ">=3.10,<3.12"
mpai-cae-arp = "^0.3.2"
opencv-contrib-python = "4.7.0.68"
rich = "^13.3.4"
tensorflow = "^2.12.0"
numpy = "1.23.3"

[tool.poetry.scripts]
tape-irregularity-classifier = 'tape_irregularity_classifier.cli:main'

[tool.poetry.group.dev.dependencies]
pytest-xdist = "^3.2.1"
pytest = "^7.3.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -W error::RuntimeWarning"
testpaths = ["tests"]