summaryrefslogtreecommitdiff
path: root/pies2overrides/setup.py
blob: 8c4d3236aeeab5df4d841e4bd593aa9e7d2030d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python

from __future__ import absolute_import

import sys

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

install_requires = ['ipaddress']
if sys.version_info[0] == 2 and sys.version_info[1] < 7:
    install_requires += ['ordereddict', 'argparse']

setup(name='pies2overrides',
      version='2.6.5',
      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-2.6.5.tar.gz?raw=true',
      license="MIT",
      install_requires=install_requires,
      requires=install_requires,
      extras_require={':python_version=="2.6"': ['ordereddict', 'argparse']},
      py_modules=['configparser', 'builtins', '_thread', 'copyreg', 'queue', 'reprlib', 'socketserver'],
      packages=['html', 'http', 'xmlrpc'])