Source code for meteo_si.version

from __future__ import absolute_import, division, print_function

from os.path import join as pjoin

# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
[docs]_version_major = 0
[docs]_version_minor = 1
[docs]_version_micro = 1 # use '' for first of series, number for 1 and above
[docs]_version_extra = 'dev'
# _version_extra = '' # Uncomment this for full releases # Construct full version string from these.
[docs]_ver = [_version_major, _version_minor]
if _version_micro: _ver.append(_version_micro) if _version_extra: _ver.append(_version_extra)
[docs]__version__ = '.'.join(map(str, _ver))
[docs]CLASSIFIERS = ["Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering"]
# Description should be a one-liner:
[docs]description = "meteo_si: Meteo SI is a collection of meteorological formulas"
[docs]NAME = "meteo_si"
[docs]MAINTAINER = "Maximilian Maahn"
[docs]MAINTAINER_EMAIL = "maximilian.maahn@colorado.edu"
[docs]DESCRIPTION = description
[docs]URL = "http://github.com/maahn/meteo_si"
[docs]DOWNLOAD_URL = ""
[docs]LICENSE = "MIT"
[docs]AUTHOR = "Maximilian Maahn"
[docs]AUTHOR_EMAIL = "maximilian.maahn@colorado.edu"
[docs]PLATFORMS = "OS Independent"
[docs]MAJOR = _version_major
[docs]MINOR = _version_minor
[docs]MICRO = _version_micro
[docs]VERSION = __version__
[docs]PACKAGE_DATA = {'meteo_si': [pjoin('data', '*')]}
[docs]REQUIRES = ["numpy"]