forked from romanin-rf/SeaPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.63 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 = "SeaPlayer"
version = "0.7.1.post1"
description = "SeaPlayer is a player that works in the terminal."
repository = "https://github.com/romanin-rf/SeaPlayer"
authors = ["Romanin <[email protected]>"]
keywords = ["textual", "tui", "player", "seaplayer", "wav", "mp3", "ogg", "midi"]
license = "MIT"
readme = "README.md"
classifiers = [
"Environment :: Console",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
packages = [{ include = "seaplayer" }]
include = [
"seaplayer/assets/image-not-found.png",
"seaplayer/css/configurate.css",
"seaplayer/css/objects.css",
"seaplayer/css/seaplayer.css",
"seaplayer/css/unknown.css"
]
[tool.poetry.scripts]
seaplayer = "seaplayer.__main__:run"
seaplug = "seaplayer.plug.__main__:run"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
ripix = ">=2.2.3"
playsoundsimple-py = "0.8.1.post1"
properties-py = "1.1.0"
urlopen2 = ">=1.1.0"
pillow = ">=9.5.0"
aiofiles = ">=23.1.0"
rich = ">=13.3.5"
mutagen = ">=1.45.1"
textual = ">=0.40.0"
typing-inspect = ">=0.9.0"
platformdirs = ">=3.5.1"
pydantic = ">=1.10.7"
click = ">=8.1.3"
validators = ">=0.20.0"
poetry = {version = ">=1.5.0", optional = true}
pyinstaller = {version = ">=5.11.0", optional = true}
[tool.poetry.extras]
build = ["poetry", "pyinstaller"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"