#!/usr/bin/env python from distutils.core import setup setup(name='pies', version='1.0.1', description='The simplest way to write one program that runs on both Python 2 and Python 3.', author='Timothy Crosley', author_email='timothy.crosley@gmail.com', url='https://github.com/timothycrosley/pies', download_url='https://github.com/timothycrosley/pies/blob/master/dist/pies-1.0.0.tar.gz?raw=true', license="GNU GPLv2", install_requires=['ordereddict'], requires=['ordereddict'], py_modules=['pies'])