-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.74 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
65
[tool.poetry]
name = "ethos-cli"
version = "0.1.0"
description = "A cross-platform CLI music player delivering local and online music streaming with User's Spotify playlist integration."
authors = [
"Agasta <[email protected]>",
"techie-coder <[email protected]>",
"ZotacMaster <[email protected]>"
]
maintainers = ["Agasta <[email protected]>"]
readme = "README.md"
license = 'MIT'
keywords = ["ethos", "cli-music-player", "spotify", "vlc", "yt-dlp", "audio-player"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Sound/Audio :: Players"
]
packages = [
{ include = "ethos", from = "." }
]
[tool.poetry.urls]
homepage = "https://github.com/Itz-Agasta/ethos"
repository = "https://github.com/Itz-Agasta/ethos"
documentation = "https://github.com/Itz-Agasta/ethos/blob/master/README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
yt-dlp = "2025.01.26"
python-vlc = "3.0.21203"
spotipy = "2.25.0"
textual = "1.0.0"
rich = "13.9.4"
python-dotenv = "1.0.1"
httpx = ">=0.28.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^6.0.0"
pytest-mock = "*"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=ethos"
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["ethos"]
omit = ["tests/*", "**/__init__.py"]
[tool.poetry.scripts]
ethos = "ethos.main:main"