forked from trichter/rf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (56 loc) · 2.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 2013-2016 Tom Eulenfeld, MIT license
import os.path
import re
from setuptools import find_packages, setup
def find_version(*paths):
fname = os.path.join(os.path.dirname(__file__), *paths)
with open(fname) as fp:
code = fp.read()
match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", code, re.M)
if match:
return match.group(1)
raise RuntimeError("Unable to find version string.")
VERSION = find_version('rf', '__init__.py')
DESCRIPTION = 'Receiver function calculation in seismology'
LONG_DESCRIPTION = (
'Please look at the project site for tutorials and information.')
ENTRY_POINTS = {
'console_scripts': ['rf-runtests = rf.tests:run',
'rf = rf.batch:run_cli']}
REQUIRES = ['decorator', 'matplotlib', 'numpy', 'scipy',
'setuptools', 'obspy>=1.0.3',
'cartopy', 'geographiclib', 'shapely', 'toeplitz', 'tqdm']
EXTRAS_REQUIRE = {
'doc': ['sphinx', 'alabaster'], # and decorator, obspy
'h5': ['obspyh5']}
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Physics'
]
setup(name='rf',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url='https://github.com/trichter/rf',
author='Tom Eulenfeld',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_dir={'rf': 'rf'},
install_requires=REQUIRES,
extras_require=EXTRAS_REQUIRE,
entry_points=ENTRY_POINTS,
include_package_data=True,
zip_safe=False,
classifiers=CLASSIFIERS
)