|
| 1 | +# Enable rule caching on Zenodo? |
| 2 | +cache_on_zenodo: true |
| 3 | + |
| 4 | +# Workflow graph (DAG) generation |
| 5 | +dag: |
| 6 | + # Generate `dag.pdf` on each build? |
| 7 | + render: false |
| 8 | + # Graphviz layout engine |
| 9 | + engine: sfdp |
| 10 | + # Group files by type into plates? |
| 11 | + group_by_type: false |
| 12 | + # Custom graph attributes |
| 13 | + graph_attr: |
| 14 | + ranksep: "1" |
| 15 | + nodesep: "0.65" |
| 16 | + # Custom node attributes |
| 17 | + node_attr: |
| 18 | + shape: "box" |
| 19 | + penwidth: "2" |
| 20 | + width: "1" |
| 21 | + # Files and glob patterns to ignore |
| 22 | + # ignore_files: |
| 23 | + # - src/tex/orcid-ID.png |
| 24 | + |
| 25 | + |
| 26 | +# Externally-hosted datasets, e.g. on Zenodo |
| 27 | +datasets: |
| 28 | + # 10.5281/zenodo.6468327: |
| 29 | + # contents: |
| 30 | + # TOI640b.json: src/data/TOI640b.json |
| 31 | + |
| 32 | +# Custom file dependencies |
| 33 | +dependencies: |
| 34 | + # src/scripts/my_script.py: |
| 35 | + # - src/data/dataset_for_my_script.dat |
| 36 | + # src/tex/ms.tex: |
| 37 | + # - src/tex/stylesheet.tex |
| 38 | + |
| 39 | +# Name of the `.tex` manuscript and corresponding `.pdf` article |
| 40 | +ms_name: ms |
| 41 | + |
| 42 | +# Optimize DAG by removing unnecessary jobs upstream of cache hits? |
| 43 | +optimize_caching: false |
| 44 | + |
| 45 | +# Overleaf sync settings |
| 46 | +overleaf: |
| 47 | + # Overleaf project ID (blank = disabled) |
| 48 | + id: |
| 49 | + # Perform sync on GitHub Actions? |
| 50 | + gh_actions_sync: true |
| 51 | + # List of files to push to Overleaf |
| 52 | + push: |
| 53 | + - src/tex/figures |
| 54 | + - src/tex/output |
| 55 | + # List of files to pull from Overleaf |
| 56 | + pull: |
| 57 | + - src/tex/ms.tex |
| 58 | + - src/tex/bib.bib |
| 59 | + |
| 60 | +# Always require all input files to be present on disk for workflow to pass? |
| 61 | +require_inputs: true |
| 62 | + |
| 63 | +# Allow cacheable rules to run on GitHub Actions? |
| 64 | +run_cache_rules_on_ci: false |
| 65 | + |
| 66 | +# Mapping of script file extensions to instructions for executing them |
| 67 | +scripts: |
| 68 | + py: python {script} |
| 69 | + |
| 70 | +# Display of the `showyourwork` stamp on first page |
| 71 | +stamp: |
| 72 | + # Show the stamp? |
| 73 | + enabled: true |
| 74 | + # Stamp angle in degrees |
| 75 | + angle: -20.0 |
| 76 | + # Stamp size in inches |
| 77 | + size: 0.75 |
| 78 | + # Horizontal position in inches from right edge of paper |
| 79 | + xpos: 0.50 |
| 80 | + # Vertical position in inches from top edge of paper |
| 81 | + ypos: 0.50 |
| 82 | + # Display of the repo URL in the stamp |
| 83 | + url: |
| 84 | + # Show the URL? |
| 85 | + enabled: true |
| 86 | + # Maximum URL length to display |
| 87 | + maxlen: 40 |
| 88 | + |
| 89 | +# Enable SyncTeX? |
| 90 | +synctex: True |
| 91 | + |
| 92 | +# Command-line options to be passed to tectonic when building the manuscript |
| 93 | +tectonic_args: [] |
| 94 | + |
| 95 | +# Preprocessing script for arXiv tarball |
| 96 | +# (such as to switch `minted` from `finalizecache` to `frozencache`) |
| 97 | +# The script will be passed a directory containing the manuscript source |
| 98 | +# as input, and should modify the contents of that directory in-place. |
| 99 | +# preprocess_arxiv_script: my_preprocess_script.sh |
| 100 | + |
| 101 | +# Enable verbose output? |
| 102 | +verbose: false |
| 103 | + |
| 104 | +# Version of `showyourwork` used to create this workflow |
| 105 | +version: 0.4.4.dev97+gcd30642 |
0 commit comments