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

setup(
    name='geomag-algorithms',
    version='0.0.0',
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',
Jeremy M Fee's avatar
Jeremy M Fee committed
        'geomagio.imfv283',
        'geomagio.edge',
        'geomagio.pcdcp'
    ],
    install_requires=[
        'numpy',
        'matplotlib',
        'scipy',
        'obspy'
    ],
    scripts=[
Hal Simpson's avatar
Hal Simpson committed
        'bin/geomag.py'