summaryrefslogtreecommitdiff
path: root/setup.py
blob: 981a876185d6136782fa0046ebac62d59ae809c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

from distutils.core import setup

setup(name='pies',
      version='1.0.0',
      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='http://www.simpleinnovation.org/',
      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'])