setup.py
674 Bytes
from numpy.distutils.core import setup, Extension
ext = Extension('tsyg',
sources=['tsyg/geopack08dp.pyf','tsyg/geopack08dp.f','tsyg/T96.f'])
setup (name = "mp_shear_angle",
version = "1.0",
description = "mpause shear angle",
author = "Daniel",
author_email = "",
url = "",
long_description =
"""
A python implementation of the magnetopause shear angle representation from Trattner et al. (2007).
""",
packages = ['tsyg'],
ext_modules = [ext],
keywords=['Scientific/Space'],
classifiers=[
"Programming Language :: Python/Fortran"
]
)