blob: 613d8b170cddc6a86891a5797762d19f07612d6d (
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.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'])
|