Skip to content

Commit

Permalink
reinstall setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainp committed May 9, 2020
1 parent 59282dd commit c7d3519
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

from distutils.core import setup
from setuptools import find_packages

setup(
name="smrt",
packages=find_packages(exclude='test'),
version="0.9",
description="Snow Microwave Radiative Transfer model",
author="Ghislain Picard, Melody Sandells, Henning Loewe",
author_email="ghislain.picard@univ-grenoble-alpes.fr, melody.sandells@gmail.com, loewe@slf.ch",
url="https://github.com/smrt-model/smrt",
keywords=["radiative transfer", "model", "snow", "microwave"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Atmospheric Science",
],
long_description="""\
The Snow Microwave Radiative Transfer (SMRT) model is a highly modular model to compute the
thermal emission of snowpacks and other cryospheric bodies in the microwave domain.
SMRT is compatible with Python 3.6+
"""
)

0 comments on commit c7d3519

Please sign in to comment.