Blame view

CODES/SHEAR_ANGLE/setup.py 674 Bytes
eb8aee88   Myriam Bouchemit   code shear_angle ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"
                   ]
        )