Skip to content

Commit a0a31e3

Browse files
add readthedocs configuration
1 parent 496a466 commit a0a31e3

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

.readthedocs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
version: 2
6+
7+
build:
8+
os: "ubuntu-20.04"
9+
tools:
10+
python: "mambaforge-4.10"
11+
12+
conda:
13+
environment: docs/environment.yml
14+
15+
sphinx:
16+
configuration: docs/conf.py
17+
18+
python:
19+
install:
20+
- method: pip
21+
path: .
22+
extra_requirements:
23+
- docs

docs/environment.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: pyomicron
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
# build
6+
- pip
7+
- setuptools
8+
- setuptools-scm
9+
- wheel
10+
# install
11+
- dqsegdb2
12+
- gwdatafind
13+
- gwpy >=1.0.0
14+
- h5py
15+
- ligo-segments
16+
- lscsoft-glue >=1.60.0
17+
- markuppy
18+
- omicron >=2.3.12
19+
- pycondor
20+
- python
21+
- python-htcondor
22+
- root_base
23+
# docs
24+
- numpydoc
25+
- sphinx
26+
- sphinx_rtd_theme
27+
- sphinxcontrib-programoutput

0 commit comments

Comments
 (0)