from distutils.core import setup from setuptools import find_packages setup( name="bashplotlib", version="0.3.0", author="Greg Lamp", author_email="lamp.greg@gmail.com", url="https://github.com/glamp/bashplotlib", license="LICENSE.txt", packages=find_packages(), description="plotting from the command line", long_description="README.txt", )