[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/codevbus/sendgrid-python/master/setup.py [Back]  [Original]

import sys
import os
from setuptools import setup, find_packages

__version__ = None
with open('sendgrid/version.py') as f:
    exec(f.read())

long_description = 'Please see our GitHub README'
if os.path.exists('README.txt'):
    long_description = open('README.txt').read()


def getRequires():
    deps = ['python_http_client>=3.0']
    if sys.version_info < (2, 7):
        deps.append('unittest2')
    elif (3, 0) 

Web Proxy Viewer  |  New URL  |  Original Page