-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this will maintain the dependencies and tests better.
- Loading branch information
1 parent
f5e7b77
commit 4852d2b
Showing
2 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[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 = "Sayan"}, | ||
{name = "Sourav"}, | ||
] | ||
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" | ||
] |