diff --git a/README.md b/README.md index c0a8b1e..f8a6c29 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,22 @@ -# music-organizer +# Music Organizer -Project for recognize automatically and organize music folders +This project is designed to automatically recognize and organize music folders. + +--------------------------------------------------------------------- +## Usage + +This command copies files from A to B and then organizes them in B. + +```bash +morg -s /your/path/A -d /your/path/B +``` + +As you can see below, we've got all the options you need. + +| **Options** | **Description** | +|:-------------:|:---------------------:| +| --src, -s | source folder to scan | +| --dest, -d | where it copy files | +| -h, --help | see usage menĂ¹ | + +-------------------------------------------------------------------- diff --git a/requirements.txt b/requirements.txt index 40cd494..2c444e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ python-magic~=0.4.27 -shazamio~=0.6.0 -requests~=2.32.3 \ No newline at end of file +shazamio~=0.6.0 \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fc821f1 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup + +setup( + name='morg', + version='0.1.0', + packages=['api', 'files', 'models', 'service'], + url='https://github.com/fscotto/music-organizer', + license='GPL-3.0', + author='Fabio Scotto di Santolo', + author_email='fabio.scottodisantolo@gmail.com', + description='Project for recognize automatically and organize music folders', + install_requires=['pyinstaller', 'shazamio', 'python-magic'] +)