forked from jmfee-usgs/geomag-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 734 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from distutils.core import setup
setup(
name='geomag-algorithms',
version='0.6.0',
description='USGS Geomag IO Library',
url='https://github.com/usgs/geomag-algorithms',
packages=[
'geomagio',
'geomagio.algorithm',
'geomagio.binlog',
'geomagio.edge',
'geomagio.iaga2002',
'geomagio.imfjson',
'geomagio.imfv122',
'geomagio.imfv283',
'geomagio.pcdcp',
'geomagio.temperature',
'geomagio.vbf'
],
install_requires=[
'numpy',
'matplotlib',
'scipy',
'obspy',
'pycurl'
],
scripts=[
'bin/geomag.py',
'bin/geomag_webservice.py',
'bin/make_cal.py'
]
)