-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
devopshigh-priorityCritical tasks that need immediate attention and implementation.Critical tasks that need immediate attention and implementation.in-progress
Description
Write setup.py function to set up Ethos Music CLI
We need a setup.py script to make Ethos Music CLI easily installable as a Python package. This script should:
- Define package metadata (name, version, author, description, etc.).
- List dependencies (
python-vlc,argparse, etc.). - Include
entry_pointsto allow running the CLI viaethoscommand after installation. - Support installation via
pip install ..
Tasks:
- Create
setup.pyin the root directory. - Define package metadata using
setuptools.setup(). - Add dependencies in
install_requires. - Define an
entry_pointssection to register the CLI command. - Test installation and execution with
pip install . && ethos.
Reference:
Priority: High
Metadata
Metadata
Assignees
Labels
devopshigh-priorityCritical tasks that need immediate attention and implementation.Critical tasks that need immediate attention and implementation.in-progress