Setup Zenodo DOI badge before the first release
Before submitting your first release, identify your Github repo id
on Github API at:
https://api.github.com/repos/{user}/{repo}
#!/usr/bin/python3 | |
import argparse | |
import os | |
import subprocess | |
def main(): | |
parser = argparse.ArgumentParser(description='Split flac file using cue') | |
parser.add_argument('cue', type=str, help='path to cue file') |