def main()

in utils/build-dists.py [0:0]


def main():
    run("rm", "-rf", "build/", "dist/", "*.egg-info", ".eggs")
    run("python", "setup.py", "sdist", "bdist_wheel")

    for dist in os.listdir(os.path.join(base_dir, "dist")):
        test_dist(os.path.join(base_dir, "dist", dist))

    # After this run 'python -m twine upload dist/*'
    print(
        "\n\n"
        "===============================\n\n"
        "    * Releases are ready! *\n\n"
        "$ python -m twine upload dist/*\n\n"
        "==============================="
    )