Skip to content

Commit

Permalink
Merge pull request #26 from henrypinkard/main
Browse files Browse the repository at this point in the history
Potential fix for remote doc build
  • Loading branch information
henrypinkard authored Aug 26, 2024
2 parents 7b49751 + c310429 commit 00cdef9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# Execution engine for microscopy hardware control and data acquisition

## Installation

## Adding device support


ExEngine is a pure Python toolkit for building microscopy and laboratory hardware control software. Unlike application-specific software that provide tightly integrated device access, control logic, and user interfaces,ExEngine is a flexible intermediary which enables mixing and matching of components from different frameworks within a single application. This approach allows researchers to build custom software that meets their specific needs, without being limited to vertically integrated software stacks.

For me information, visit the documentation at [https://exengine.readthedocs.io](https://exengine.readthedocs.io).
6 changes: 6 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

# Somehow this fixes the docs when built on readthedocs?
import os
import sys
sys.path.insert(0, os.path.abspath('..'))


project = 'ExEngine'
copyright = '2024, Henry Pinkard'
author = 'Henry Pinkard'
Expand Down
8 changes: 6 additions & 2 deletions readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build:
tools:
python: "3.10"
jobs:
post_checkout:
post_checkout: # this deals with git LFS and the figures
# Download and uncompress the binary
# https://git-lfs.github.com/
- wget https://github.com/git-lfs/git-lfs/releases/download/v3.1.4/git-lfs-linux-amd64-v3.1.4.tar.gz
Expand All @@ -33,4 +33,8 @@ build:
# Optionally specify the Python version used by Read the Docs
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
- docs
- requirements: docs/requirements.txt

0 comments on commit 00cdef9

Please sign in to comment.