-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (32 loc) · 984 Bytes
/
pyproject.toml
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
37
[tool.poetry]
name = "Synthesia Video Converter"
version = "0.1.0"
description = "Converts Synthesia piano roll video to MIDI, note sheets PDF and Music XML. Works with YouTube video links."
authors = ["edvein-rin <[email protected]>"]
repository = "https://github.com/edvein-rin/synthesia-video-converter"
license = "CC BY-NC-SA 4.0"
readme = "README.md"
packages = [{include = "src"}]
include = ["LICENCE", "requirements.txt"]
[tool.poetry.scripts]
cli = "src.cli.main:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
opencv-python = "4.5.5.62"
typer = {extras = ["all"], version = "^0.9.0"}
pandas = "^2.0.1"
midiutil = "^1.2.1"
music21 = "^8.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
mkdocs = "^1.4.3"
pyinstaller = "^5.10.1"
pre-commit = "^3.3.1"
mkdocs-material = "^9.1.10"
flake8 = "^6.0.0"
black = "^23.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
experimental-string-processing = true