#!/usr/bin/env python
from setuptools import setup

setup(
    name='pythonpy',
    version='0.4.11',
    description='python -c, with tab completion and shorthand',
    #data_files=data_files,
    license='MIT',
    url='https://github.com/Russell91/pythonpy',
    long_description='https://github.com/Russell91/pythonpy',
    packages=['pythonpy', 'pythonpy.completion'],
    package_data={'pythonpy': ['completion/pycompletion.sh']},
    scripts=['pythonpy/find_pycompletion.sh'],
)
