forked from Itz-Agasta/ethos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.06 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ethos"
version = "0.1.0"
description = "A cross-platform CLI audio playbacker delivering local and online music streaming with User's Spotify playlist integration."
authors = [
{name = "Agasta", email = "[email protected]"},
{name = "techie-coder", email = "[email protected]"},
{name = "ZotacMaster", email = "[email protected]"},
{name = "Saikat Mahara"},
{name = "Albin Mathew"},
]
dependencies = [
"yt-dlp==2025.01.15",
"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"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
testpaths = [
"tests"
]
python_files = [
"test_*.py"
]
[tool.setuptools]
packages = { find = { where = ["."] } }
[tool.setuptools.package-data]
"ethos" = ["ethos/.env", "ethos/ui/styles.tcss"]
[project.scripts]
ethos = "ethos.main:main"