-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 668 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (18 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
import 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 = ['waveform_collection', 'lts_array']
config = {'name': 'array_processing',
'url': 'https://github.com/uafgeotools/array_processing',
'packages': find_packages(),
'install_requires': ['waveform_collection', 'lts_array']
}
setup(
name='array_processing',
packages=find_packages(),
install_requires=INSTALL_REQUIRES
)