#!python
#
# See top-level LICENSE file for Copyright information
#
# -*- coding: utf-8 -*-


"""
Plot a given slime density distribution.
"""

import pyslime.scripts.plot_distribution as plot_dist

if __name__ == "__main__":
    args = plot_dist.parser()
    plot_dist.main(args)
