Skip to content
Snippets Groups Projects
setup.py 734 B
Newer Older
from distutils.core import setup

setup(
    name='geomag-algorithms',
Jeremy M Fee's avatar
Jeremy M Fee committed
    description='USGS Geomag IO Library',
    url='https://github.com/usgs/geomag-algorithms',
    packages=[
        'geomagio',
        'geomagio.algorithm',
        'geomagio.binlog',
        'geomagio.edge',
        'geomagio.imfjson',
        'geomagio.imfv122',
Jeremy M Fee's avatar
Jeremy M Fee committed
        'geomagio.imfv283',
        'geomagio.pcdcp',
        'geomagio.temperature',
        'geomagio.vbf'
    ],
    install_requires=[
        'numpy',
        'matplotlib',
        'scipy',
        'obspy',
        'pycurl'
    ],
    scripts=[
        'bin/geomag_webservice.py',
        'bin/make_cal.py'