cjcodeproj / musicscan

Python code to examine music files and extract metadata
MIT License
0 stars 0 forks source link

id3scan should be a bin tool #49

Closed cjcodeproj closed 1 week ago

cjcodeproj commented 1 week ago

The id3scan tool should become a command line tool.

So instead of running

$ python -m musicscan.tools.id3scan

A user can just run

$ id3scan

This will involve a change in the pyproject.toml file.

[project.scripts]
id3scan = "musicscan.tools.id3scan:main_cli"

A specific main_entry function will need to be created.

cjcodeproj commented 1 week ago

Commit:

https://github.com/cjcodeproj/musicscan/commit/63f04024b280d8505d6af318d137d6137f9c68a2

cjcodeproj commented 1 week ago

Closing Notes