forked from uafgeotools/lts_array
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 704 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import os as os
# https://github.com/readthedocs/readthedocs.org/issues/5512#issuecomment-475073310
on_rtd = os.environ.get('READTHEDOCS') == 'True'
if on_rtd:
INSTALL_REQUIRES = []
else:
INSTALL_REQUIRES = ['matplotlib', 'numpy', 'obspy', 'scipy', 'numba']
setup(
name='lts_array',
version='2.0',
description='Apply least trimmed squares to infrasound and seismic array processing.',
license='LICENSE.txt',
author='Jordan W. Bishop',
url="https://github.com/uafgeotools/lts_array",
packages=find_packages(),
python_requires='>=3.0',
install_requires=INSTALL_REQUIRES,
scripts=[
'example.py',
]
)