-
Notifications
You must be signed in to change notification settings - Fork 102
/
pyproject.toml
65 lines (58 loc) · 1.77 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "omnizart"
version = "0.5.0"
description = "Omniscient Mozart, being able to transcribe everything in the music."
readme = "README.md"
authors = ["BreezeWhite <[email protected]>", "yjlolo <[email protected]>"]
license = "MIT"
repository = "https://github.com/Music-and-Culture-Technology-Lab/omnizart"
documentation = "https://music-and-culture-technology-lab.github.io/omnizart-doc/"
homepage = "https://sites.google.com/view/mctl/home"
keywords = ["automatic music transcription", "drum transcription", "vocal transcription", "beat tracking"]
classifiers = [
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Version Control :: Git",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
exclude = ["weights*"]
[tool.poetry.dependencies]
python = ">=3.6.1,<3.9"
click = "^7.1.2"
pretty_midi = "^0.2.9"
librosa = "^0.8.0"
madmom = "^0.16.1"
pillow = "^8.3.2"
pyyaml = "^5.3.1"
jsonschema = "^3.2.0"
tqdm = "^4.49.0"
pyfluidsynth = "^1.2.5"
vamp = "^1.1.0"
urllib3 = "1.26.4"
spleeter = "^2.3.0"
mir_eval = "^0.6"
tensorflow = "2.5.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.3"
pylint = "^2.5.3"
black = "^19.10b0"
numpydoc = "^1.1.0"
yapf = "^0.30.0"
sphinx-press-theme = "^0.5.1"
pytest-cov = "^2.10.1"
pytest-mock = "^3.3.1"
sphinx-click = "^2.5.0"
sphinxcontrib-bibtex = "^1.0.0"
[tool.poetry.scripts]
omnizart = 'omnizart.cli.cli:entry'
[tool.black]
line-length = 120
target-version = ['py36']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"