summaryrefslogtreecommitdiff
path: root/pies2overrides/setup.py
blob: d88ca3cb3510ff96e7d00a979aa41b23af1eb367 (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='pies2overrides',
      version='1.0.0',
      description='Defines override classes that should be included with pies only if running on Python2.',
      author='Timothy Crosley',
      author_email='timothy.crosley@gmail.com',
      url='https://github.com/timothycrosley/pies',
      download_url='https://github.com/timothycrosley/pies/blob/master/pies2overrides/dist/pies2overrides-1.0.0.tar.gz?raw=true',
      license="GNU GPLv2",
      install_requires=['ordereddict', 'argparse'],
      requires=['ordereddict', 'argparse'],
      py_modules=['configparser'])