Skip to content

Commit

Permalink
Merge e73a11f into b579ea6
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Mar 11, 2022
2 parents b579ea6 + e73a11f commit a8d6fbc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
with:
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

- name: Install furo theme
run: |
pip install furo
- name: Install package
run: |
pip install --no-deps -e .
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,7 @@ nosetests.xml
/src/spec2nexus/__plots__

# IPython session logs
.logs/
.logs/

# PyTest
.pytest_cache/
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@
#
#html_theme = 'alabaster'
# html_theme = 'sphinx_rtd_theme'
html_theme = "bizstyle"
# html_theme = "bizstyle"
html_theme = "furo"

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
6 changes: 4 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ Provides

.. keywords - SPEC, NeXus, HDF5, h5py
### Command-line tools
Command-line tools
------------------

* **spec2nexus** : Convert `SPEC <https://certif.com>`_ data files to `NeXus <https://nexusformat.org>`_ `HDF5 <https://hdfgroup.org>`_
* **extractSpecScan** : Save columns from SPEC data file scan(s) to TSV files
* **specplot** : plot a SPEC scan to an image file
* **specplot_gallery** : call **specplot** for all scans in a list of files, makes a web gallery

### Libraries
Libraries
---------

* **spec** : python binding to read SPEC data files
* **eznx** : (Easy NeXus) supports writing NeXus HDF5 files using h5py
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ coverage
coveralls
docopt
versioneer
furo

0 comments on commit a8d6fbc

Please sign in to comment.