-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
56 lines (46 loc) · 1.61 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
# Copyright 2017-2023 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('yam', '__init__.py')
DESCRIPTION = (
'Yet another monitoring tool using correlations of '
'ambient noise (seismology)')
LONG_DESCRIPTION = (
'Please look at the project site for tutorials and information.')
ENTRY_POINTS = {
'console_scripts': ['yam-runtests = yam.tests:run',
'yam = yam.main:run_cmdline']}
REQUIRES = ['h5py', 'matplotlib', 'numpy', 'obspy>=1.1', 'obspyh5>=0.3',
'scipy>=0.18', 'setuptools', 'tqdm']
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Physics'
]
setup(name='yam',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url='https://github.com/trichter/yam',
author='Tom Eulenfeld',
license='MIT',
packages=find_packages(),
package_dir={'yam': 'yam'},
install_requires=REQUIRES,
entry_points=ENTRY_POINTS,
include_package_data=True,
zip_safe=False,
classifiers=CLASSIFIERS
)