-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from adamjakab/devel
restructuring and documentation
- Loading branch information
Showing
12 changed files
with
300 additions
and
186 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
prune test | ||
include LICENSE.txt | ||
include README.md | ||
include beetsplug/xtractor/version.py | ||
include beetsplug/xtractor/config_default.yml | ||
include beetsplug/xtractor/config_default.yml |
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
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,19 @@ | ||
# Copyright: Copyright (c) 2020., Adam Jakab | ||
# Author: Adam Jakab <adam at jakab dot pro> | ||
# License: See LICENSE.txt | ||
|
||
__author__ = u'Adam Jakab' | ||
__email__ = u'[email protected]' | ||
__copyright__ = u'Copyright (c) 2020, {} <{}>'.format(__author__, __email__) | ||
__license__ = u'License :: OSI Approved :: MIT License' | ||
__version__ = u'0.2.3' | ||
__status__ = u'Kickstarted' | ||
|
||
__PACKAGE_TITLE__ = u'Xtractor' | ||
__PACKAGE_NAME__ = u'beets-xtractor' | ||
__PACKAGE_DESCRIPTION__ = u'A beets plugin that extracts music descriptors ' \ | ||
u'from your audio files', | ||
__PACKAGE_URL__ = u'https://github.com/adamjakab/BeetsPluginXtractor' | ||
__PLUGIN_NAME__ = u'xtractor' | ||
__PLUGIN_ALIAS__ = u'xt' | ||
__PLUGIN_SHORT_DESCRIPTION__ = u'get more out of your music...' |
Oops, something went wrong.