Revision 3d5fa0e11f92cfc745a2a679203342125ca0fd3b authored by heisterm on 17 July 2014, 12:11:13 UTC, committed by heisterm on 17 July 2014, 12:11:13 UTC
Linked proj4_to_osr to georef module and renamed variable projstr to proj.
1 parent bb6eba0
Raw File
setup.py
import os
import sys

# if setuptools not present bootstrap it
try:
    from setuptools import setup
except ImportError:
    from ez_setup import use_setuptools
    use_setuptools()
    from setuptools import setup

# import pkg_resources for version checking
from pkg_resources import get_distribution, parse_version


def query_yes_quit(question, default="quit"):
    """Ask a yes/quit question via raw_input() and return their answer.

    "question" is a string that is presented to the user.
    "default" is the presumed answer if the user just hits <Enter>.
        It must be "yes" or "quit" (the default).

    The "answer" return value is one of "yes" or "quit".
    """
    valid = {"yes":"yes",   "y":"yes",    "ye":"yes",
             "quit":"quit", "qui":"quit", "qu":"quit", "q":"quit"}
    if default == None:
        prompt = " [y/q] "
    elif default == "yes":
        prompt = " [Y/q] "
    elif default == "quit":
        prompt = " [y/Q] "
    else:
        raise ValueError("invalid default answer: '%s'" % default)

    while 1:
        sys.stdout.write(question + prompt)
        choice = raw_input().lower()
        if default is not None and choice == '':
            return default
        elif choice in valid.keys():
            return valid[choice]
        else:
            sys.stdout.write("Please respond with 'yes' or 'quit'.\n")

# package requires (dependencies)
with open('requirements.txt') as f:
    requires = f.read().splitlines()
missing = []

for sample in requires:
    samplesplit = sample.split()
    modulestr = samplesplit[0]
    try:
        module = __import__(modulestr)
        # if dependency has version constraints
        if len(samplesplit) >= 3:
            ver = samplesplit[2]
            mver = get_distribution(modulestr).version
            if parse_version(mver) < parse_version(ver):
                print("Dependency %s version %s installed, but %s needed! " % (modulestr, mver, ver))
                missing.append(sample)
    except ImportError:
        print("Dependency %s not installed." % modulestr)
        missing.append(sample)

# just run if missing/version mismatch dependencies are detected
if missing:
    question = "Dependencies %s are missing or version mismatch! \nShould setup.py try to install/update the missing " \
               "packages? (Not recommended! See documentation for information!) \nOtherwise `Quit` and install via package manager or any other means!" % missing
    answer = query_yes_quit(question)
    if answer == 'quit':
        sys.exit('User quit setup.py')

# get current version from file
with open("version") as f:
    VERSION = f.read()
    VERSION = VERSION.strip()


if __name__ == '__main__':

    setup(name='wradlib',
          version=VERSION,
          description='Open Source Library for Weather Radar Data Processing',
          long_description = """\
wradlib - An Open Source Library for Weather Radar Data Processing
==================================================================

wradlib is designed to assist you in the most important steps of
processing weather radar data. These may include: reading common data
formats, georeferencing, converting reflectivity to rainfall
intensity, identifying and correcting typical error sources (such as
clutter or attenuation) and visualising the data.

""",
          license='BSD',
          url='http://wradlib.bitbucket.org/',
          download_url='https://bitbucket.org/wradlib/wradlib',
          packages=['wradlib'],
          include_package_data=True, # see MAINFEST.in
          classifiers=[
          'Development Status :: 4 - Beta',
          'License :: OSI Approved :: BSD License',
          'Environment :: Console',
          'Operating System :: OS Independent',
          'Intended Audience :: Science/Research',
          'Programming Language :: Python',
          'Topic :: Scientific/Engineering',
          ],
          install_requires=missing
          )

back to top