-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (25 loc) · 1.04 KB
/
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
"""
Setup file for the mtsthelens package
"""
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
opts = dict(
name = 'MtStHelens',
version = '0.1',
url = 'https://github.com/CSE583MtStHelens/CSE583_MtStHelens',
license = 'MIT',
author = 'guiliangz,shreeyag, yash6599, callumk, koepflma',
author_email = '[email protected], [email protected], [email protected], [email protected], [email protected]',
description = 'Analyze the seismic data of the volcanic eruption of the Mount St. Helens from 2004 to 2008',
long_description = 'Analyze the correlation of seismic attenuation and the magma extrusion rate and the changing\
of the climatic patterns in the region from seismic data of the Mount St. Helens',
packages = ['mtsthelens', 'tests', 'example'],
package_data = {'example':['example_data/*.*']},
include_package_data = True,
install_requires = ['pytest-runner', 'flake8'],
tests_require = ['pytest'],
)
if __name__=='__main__':
setup(**opts)