-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (47 loc) · 1.11 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
[tool.poetry]
name = "dita"
version = "0.1.0"
description = "Command-line Discogs tagger"
authors = ["hejops"]
license = "GNU GPLv3"
readme = "README.md"
homepage = "https://github.com/hejops/dita"
repository = "https://github.com/hejops/dita"
[tool.poetry.dependencies]
python = "^3.11"
bs4 = "^0.0.2"
datetime = "^5.4"
filetype = "^1.2.0"
flatdict = "^4.0.1"
levenshtein = "^0.24.0"
mutagen = "^1.47.0"
natsort = "^8.4.0"
numpy = "^1.26.3"
pandas = "^2.2.0"
pathlib = "^1.0.1"
psutil = "^5.9.8"
pyfzf = "^0.3.1"
pytest = "^8.0.0"
readchar = "^4.0.5"
requests = "^2.31.0"
st-clickable-images = "^0.0.3"
streamlit = "^1.31.0"
tabulate = "^0.9.0"
termcolor = "^2.4.0"
tinytag = "^1.10.1"
titlecase = "^2.4.1"
tqdm = "^4.66.1"
unidecode = "^1.3.8"
yt-dlp = "^2023.12.30"
python-mpv = "^1.0.5"
pylint = "^3.0.3"
[tool.poetry.scripts]
convert_files = "dita.file.convert:main"
discogs_rate = "dita.discogs.rate:main"
discogs_release = "dita.discogs.release:main"
fix_tags = "dita.tag.fix:main"
move_files = "dita.file.mover:main"
pmp = "dita.play.pmp:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"