pyproject.toml 627 Bytes
Newer Older
Matteo's avatar
Matteo 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
[tool.poetry]
name = "tape-audio-restoration"
version = "1.0.1"
description = "MPAI CAE-ARP Tape Audio Restoration."
authors = ["Matteo Spanio <dev2@audioinnova.com>", "Nadir Dalla Pozza <nadir.dallapozza@unipd.it>"]
license = "GPLv3"
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.10,<3.12"
numpy = "1.23.3"
mpai-cae-arp = "^0.2.2"
control = "0.9.3.post2"
scipy = "^1.10.1"
fastapi = {extras = ["standard"], version = "^0.95.0"}
uvicorn = "^0.21.1"


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

[tool.poetry.scripts]
tape-audio-restoration = 'tapeAudioRestoration:main'