from distutils.core import setup from setuptools import find_packages setup( name="bashplotlib", version="0.3.5", author="Greg Lamp", author_email="lamp.greg@gmail.com", url="https://github.com/glamp/bashplotlib", license=open("LICENSE.txt").read(), packages=find_packages(), description="plotting in the terminal", long_description=open("README.txt").read(), scripts=['bin/hist', 'bin/scatter'], )