-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (57 loc) · 1.84 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
[tool.poetry]
name = "rolabesti"
version = "0.6.0"
description = "CLI app to manage, search, and play collections of mp3 tracks."
authors = ["Kinuax <kinuax@protonmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kinuax/rolabesti"
repository = "https://github.com/kinuax/rolabesti"
documentation = "https://github.com/kinuax/rolabesti"
keywords = ["audio", "sound", "music", "mp3", "player", "id3", "cli", "shell", "terminal", "typer", "click", "tinydb", "vlc"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Framework :: Pytest",
"Framework :: tox",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Sound/Audio :: Players :: MP3",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
docstring-inheritance = "2.2.0"
mutagen = "1.47.0"
platformdirs = "4.2.0"
pydantic = "2.7.0"
pydantic-settings = "2.2.1"
pydub = "0.25.1"
pygame = "2.5.2"
pymongo = "4.6.2"
tinydb = "4.8.0"
tomlkit = "0.12.4"
typer = "0.12.3"
wurlitzer = "3.0.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "8.1.1"
tox = "4.14.2"
[tool.poetry.scripts]
rolabesti = "rolabesti.cli.main:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"