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_micro = 1 # use '' for first of series, number for 1 and above
# _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]MAINTAINER = "Maximilian Maahn"
[docs]MAINTAINER_EMAIL = "maximilian.maahn@colorado.edu"
[docs]DESCRIPTION = description
[docs]URL = "http://github.com/maahn/meteo_si"
[docs]AUTHOR = "Maximilian Maahn"
[docs]AUTHOR_EMAIL = "maximilian.maahn@colorado.edu"
[docs]PACKAGE_DATA = {'meteo_si': [pjoin('data', '*')]}