Skip to content

Commit

Permalink
created pyproject.toml
Browse files Browse the repository at this point in the history
this will maintain the dependencies and tests better.
  • Loading branch information
Itz-Agasta committed Feb 6, 2025
1 parent f5e7b77 commit 4852d2b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ethos/pyproject.toml

This file was deleted.

40 changes: 40 additions & 0 deletions pyproject.toml
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"
]

0 comments on commit 4852d2b

Please sign in to comment.