def readout(cmd): """A command for getting the package name from setup.py file Args: cmd (str): 'python setup.py --name' Returns: str: package name """ return run(cmd, hide='out').stdout.strip()