-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (40 loc) · 1.36 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
packname = 'scoter'
subpacknames = ['scoter.ie']
setup(
name=packname,
version='0.1.0',
description='SCOTER: Multiple-event location by using static '
'and source-specific station correction terms',
long_description=read('README.md'),
url='https://git.gfz-potsdam.de/nooshiri/scoter',
author='Nima Nooshiri',
author_email='[email protected]; '
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering'],
keywords='seismology seismic-relocation station-terms',
python_requires='>=2.7, <3',
install_requires=[
'numpy>=1.13.1',
'scipy>=0.19.1',
'pyrocko>=2017.11.22',
'pyyaml>=3.11',
'progressbar2>=3.34.2',
'shapely>=1.6.4'],
packages=[packname] + subpacknames,
package_dir={'scoter': 'src'},
scripts=['apps/scoter'],
package_data={
packname: [
'data/config.sf',
'data/FlinnEngdahl_seismic.pickle',
'data/scoter.mplstyle']})