FASTEN-cli 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fasten_cli-1.0.0/.github/workflows/publish.yml +48 -0
- fasten_cli-1.0.0/LICENSE.md +21 -0
- fasten_cli-1.0.0/PKG-INFO +89 -0
- fasten_cli-1.0.0/README.md +70 -0
- fasten_cli-1.0.0/docs/.github/workflows/jekyll-gh-pages.yml +51 -0
- fasten_cli-1.0.0/docs/404.html +25 -0
- fasten_cli-1.0.0/docs/Gemfile +22 -0
- fasten_cli-1.0.0/docs/Gemfile.lock +301 -0
- fasten_cli-1.0.0/docs/_config.yml +57 -0
- fasten_cli-1.0.0/docs/_layouts/default.html +42 -0
- fasten_cli-1.0.0/docs/_layouts/defaults.html +42 -0
- fasten_cli-1.0.0/docs/_posts/2026-04-09-welcome-to-jekyll.markdown +29 -0
- fasten_cli-1.0.0/docs/_site/404.html +20 -0
- fasten_cli-1.0.0/docs/_site/assets/css/style.css +323 -0
- fasten_cli-1.0.0/docs/_site/feed.xml +17 -0
- fasten_cli-1.0.0/docs/_site/index.html +693 -0
- fasten_cli-1.0.0/docs/_site/jekyll/update/2026/04/09/welcome-to-jekyll.html +18 -0
- fasten_cli-1.0.0/docs/index.md +654 -0
- fasten_cli-1.0.0/pyproject.toml +21 -0
- fasten_cli-1.0.0/src/FASTEN/__init__.py +7 -0
- fasten_cli-1.0.0/src/FASTEN/cli.py +95 -0
- fasten_cli-1.0.0/src/FASTEN/common.py +5 -0
- fasten_cli-1.0.0/src/FASTEN/config.py +110 -0
- fasten_cli-1.0.0/src/FASTEN/data.py +118 -0
- fasten_cli-1.0.0/src/FASTEN/estimate.py +138 -0
- fasten_cli-1.0.0/src/FASTEN/learn.py +165 -0
- fasten_cli-1.0.0/src/FASTEN/model.py +152 -0
- fasten_cli-1.0.0/src/FASTEN/param.py +120 -0
- fasten_cli-1.0.0/src/FASTEN/plot.py +215 -0
- fasten_cli-1.0.0/src/FASTEN/predict.py +66 -0
- fasten_cli-1.0.0/src/FASTEN/train.py +87 -0
- fasten_cli-1.0.0/src/FASTEN/tune.py +92 -0
- fasten_cli-1.0.0/src/FASTEN/utils.py +67 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: Publish FASTEN
|
|
2
|
+
on: [push]
|
|
3
|
+
|
|
4
|
+
jobs:
|
|
5
|
+
build:
|
|
6
|
+
name: Build distribution
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@v6
|
|
11
|
+
with:
|
|
12
|
+
persist-credentials: false
|
|
13
|
+
- name: Set up Python
|
|
14
|
+
uses: actions/setup-python@v6
|
|
15
|
+
with:
|
|
16
|
+
python-version: "3.x"
|
|
17
|
+
- name: Install pypa/build
|
|
18
|
+
run: >-
|
|
19
|
+
python3 -m
|
|
20
|
+
pip install
|
|
21
|
+
build
|
|
22
|
+
--user
|
|
23
|
+
- name: Build a binary wheel and a source tarball
|
|
24
|
+
run: python3 -m build
|
|
25
|
+
- name: Store the distribution packages
|
|
26
|
+
uses: actions/upload-artifact@v5
|
|
27
|
+
with:
|
|
28
|
+
name: python-package-distributions
|
|
29
|
+
path: dist/
|
|
30
|
+
|
|
31
|
+
publish:
|
|
32
|
+
name: Publish to PyPI
|
|
33
|
+
needs: build
|
|
34
|
+
runs-on: ubuntu-latest
|
|
35
|
+
environment:
|
|
36
|
+
name: pypi
|
|
37
|
+
url: https://pypi.org/p/fasten-cli
|
|
38
|
+
permissions:
|
|
39
|
+
id-token: write
|
|
40
|
+
|
|
41
|
+
steps:
|
|
42
|
+
- name: Download all the dists
|
|
43
|
+
uses: actions/download-artifact@v6
|
|
44
|
+
with:
|
|
45
|
+
name: python-package-distributions
|
|
46
|
+
path: dist/
|
|
47
|
+
- name: Publish distribution to PyPI
|
|
48
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Kate Jackson
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: FASTEN-cli
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Project-URL: Homepage, https://github.com/k1jackson/FASTEN
|
|
5
|
+
Project-URL: Bug Tracker, https://github.com/k1jackson/FASTEN/issues
|
|
6
|
+
Project-URL: Config Designer, https://k1jackson.github.io/FASTEN/
|
|
7
|
+
License-File: LICENSE.md
|
|
8
|
+
Requires-Dist: k-means-constrained
|
|
9
|
+
Requires-Dist: matplotlib
|
|
10
|
+
Requires-Dist: numpy>=2.1.1
|
|
11
|
+
Requires-Dist: optuna
|
|
12
|
+
Requires-Dist: pandas
|
|
13
|
+
Requires-Dist: pydantic>=2.0
|
|
14
|
+
Requires-Dist: rich
|
|
15
|
+
Requires-Dist: scikit-learn
|
|
16
|
+
Requires-Dist: scipy>=1.14.0
|
|
17
|
+
Requires-Dist: torch
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# FASTEN
|
|
21
|
+
|
|
22
|
+
[](LICENSE.md)
|
|
23
|
+
[](CHANGELOG.md)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
<!-- Explain the *what* and *why* of your project in 2–4 sentences.
|
|
27
|
+
Answer: What problem does it solve? Who is it for? Why does it exist? -->
|
|
28
|
+
|
|
29
|
+
FASTEN is a flexible and user-friendly framework for building PyTorch-based deep learning emulators for epidemic simulations with stochastic outputs. FASTEN provides three intuitive modules to (1) train deep neural networks on simulation data, (2) select optimal hyperparameters, and (3) generate predictions from unseen inputs.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
FASTEN can be installed via ```pip```:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install fasten-cli
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Usage
|
|
42
|
+
|
|
43
|
+
There are two primary components to FASTEN: the [configuration file designer](https://k1jackson.github.io/FASTEN/) and the command line tool.
|
|
44
|
+
|
|
45
|
+
### Configuration File Designer
|
|
46
|
+
Before executing a FASTEN, the user must construct a workflow configuration file that outlines the simulation data format and training hyperparameters. The [configuration file designer](https://k1jackson.github.io/FASTEN/) guides users through this process with contextual instructions and validation checks.
|
|
47
|
+
|
|
48
|
+
### Command Line Tool
|
|
49
|
+
The FASTEN workflow decomposes the model emulation process into three phases: (1)training, (2) hyperparameter tuning, and (3) output prediction. Each phase is invoked through a dedicated command line module, with a shared configuration file governing the underlying behavior. The command line tool can used as follows:
|
|
50
|
+
|
|
51
|
+
**Training:**
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
usage: FASTEN train [-h] -c CONFIG -i INPUT [-o OUTPUT] [-m MODEL]
|
|
55
|
+
|
|
56
|
+
options:
|
|
57
|
+
-h, --help show this help message and exit
|
|
58
|
+
-c, --config CONFIG JSON file defining configuration parameters
|
|
59
|
+
-i, --input INPUT TSV file with simulation data
|
|
60
|
+
-o, --output OUTPUT Folder to output model and figures (default: outputs)
|
|
61
|
+
-m, --model MODEL ZIP file containing initial model (default: None)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
**Hyperparameter Tuning:**
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
usage: FASTEN tune [-h] -c CONFIG -i INPUT [-o OUTPUT] [-n TRIALS] [--unique]
|
|
68
|
+
|
|
69
|
+
options:
|
|
70
|
+
-h, --help show this help message and exit
|
|
71
|
+
-c, --config CONFIG JSON file defining configuration parameters
|
|
72
|
+
-i, --input INPUT TSV file with simulation data
|
|
73
|
+
-o, --output OUTPUT Folder to output optimal configs and figures (default: outputs)
|
|
74
|
+
-n, --trials TRIALS Total number of optimation trials (default: 100)
|
|
75
|
+
--unique Prevents re-training with duplicate hyperparameter sets (default: False)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**Output Prediction:**
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
usage: FASTEN predict [-h] -m MODEL -i INPUT [-o OUTPUT] [-n RUNS]
|
|
82
|
+
|
|
83
|
+
options:
|
|
84
|
+
-h, --help show this help message and exit
|
|
85
|
+
-m, --model MODEL ZIP file containing model
|
|
86
|
+
-i, --input INPUT TSV file with simulation inputs
|
|
87
|
+
-o, --output OUTPUT TSV file to output predicted simulation data (default: outputs.tsv)
|
|
88
|
+
-n, --runs RUNS Number of simulation runs per input (default: 0)
|
|
89
|
+
```
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# FASTEN
|
|
2
|
+
|
|
3
|
+
[](LICENSE.md)
|
|
4
|
+
[](CHANGELOG.md)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
<!-- Explain the *what* and *why* of your project in 2–4 sentences.
|
|
8
|
+
Answer: What problem does it solve? Who is it for? Why does it exist? -->
|
|
9
|
+
|
|
10
|
+
FASTEN is a flexible and user-friendly framework for building PyTorch-based deep learning emulators for epidemic simulations with stochastic outputs. FASTEN provides three intuitive modules to (1) train deep neural networks on simulation data, (2) select optimal hyperparameters, and (3) generate predictions from unseen inputs.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
FASTEN can be installed via ```pip```:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install fasten-cli
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
There are two primary components to FASTEN: the [configuration file designer](https://k1jackson.github.io/FASTEN/) and the command line tool.
|
|
25
|
+
|
|
26
|
+
### Configuration File Designer
|
|
27
|
+
Before executing a FASTEN, the user must construct a workflow configuration file that outlines the simulation data format and training hyperparameters. The [configuration file designer](https://k1jackson.github.io/FASTEN/) guides users through this process with contextual instructions and validation checks.
|
|
28
|
+
|
|
29
|
+
### Command Line Tool
|
|
30
|
+
The FASTEN workflow decomposes the model emulation process into three phases: (1)training, (2) hyperparameter tuning, and (3) output prediction. Each phase is invoked through a dedicated command line module, with a shared configuration file governing the underlying behavior. The command line tool can used as follows:
|
|
31
|
+
|
|
32
|
+
**Training:**
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
usage: FASTEN train [-h] -c CONFIG -i INPUT [-o OUTPUT] [-m MODEL]
|
|
36
|
+
|
|
37
|
+
options:
|
|
38
|
+
-h, --help show this help message and exit
|
|
39
|
+
-c, --config CONFIG JSON file defining configuration parameters
|
|
40
|
+
-i, --input INPUT TSV file with simulation data
|
|
41
|
+
-o, --output OUTPUT Folder to output model and figures (default: outputs)
|
|
42
|
+
-m, --model MODEL ZIP file containing initial model (default: None)
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
**Hyperparameter Tuning:**
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
usage: FASTEN tune [-h] -c CONFIG -i INPUT [-o OUTPUT] [-n TRIALS] [--unique]
|
|
49
|
+
|
|
50
|
+
options:
|
|
51
|
+
-h, --help show this help message and exit
|
|
52
|
+
-c, --config CONFIG JSON file defining configuration parameters
|
|
53
|
+
-i, --input INPUT TSV file with simulation data
|
|
54
|
+
-o, --output OUTPUT Folder to output optimal configs and figures (default: outputs)
|
|
55
|
+
-n, --trials TRIALS Total number of optimation trials (default: 100)
|
|
56
|
+
--unique Prevents re-training with duplicate hyperparameter sets (default: False)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**Output Prediction:**
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
usage: FASTEN predict [-h] -m MODEL -i INPUT [-o OUTPUT] [-n RUNS]
|
|
63
|
+
|
|
64
|
+
options:
|
|
65
|
+
-h, --help show this help message and exit
|
|
66
|
+
-m, --model MODEL ZIP file containing model
|
|
67
|
+
-i, --input INPUT TSV file with simulation inputs
|
|
68
|
+
-o, --output OUTPUT TSV file to output predicted simulation data (default: outputs.tsv)
|
|
69
|
+
-n, --runs RUNS Number of simulation runs per input (default: 0)
|
|
70
|
+
```
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
|
|
2
|
+
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
# Runs on pushes targeting the default branch
|
|
6
|
+
push:
|
|
7
|
+
branches: ["main"]
|
|
8
|
+
|
|
9
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
|
|
12
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
13
|
+
permissions:
|
|
14
|
+
contents: read
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
|
|
18
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
19
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
20
|
+
concurrency:
|
|
21
|
+
group: "pages"
|
|
22
|
+
cancel-in-progress: false
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
# Build job
|
|
26
|
+
build:
|
|
27
|
+
runs-on: ubuntu-latest
|
|
28
|
+
steps:
|
|
29
|
+
- name: Checkout
|
|
30
|
+
uses: actions/checkout@v4
|
|
31
|
+
- name: Setup Pages
|
|
32
|
+
uses: actions/configure-pages@v5
|
|
33
|
+
- name: Build with Jekyll
|
|
34
|
+
uses: actions/jekyll-build-pages@v1
|
|
35
|
+
with:
|
|
36
|
+
source: ./
|
|
37
|
+
destination: ./_site
|
|
38
|
+
- name: Upload artifact
|
|
39
|
+
uses: actions/upload-pages-artifact@v3
|
|
40
|
+
|
|
41
|
+
# Deployment job
|
|
42
|
+
deploy:
|
|
43
|
+
environment:
|
|
44
|
+
name: github-pages
|
|
45
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
46
|
+
runs-on: ubuntu-latest
|
|
47
|
+
needs: build
|
|
48
|
+
steps:
|
|
49
|
+
- name: Deploy to GitHub Pages
|
|
50
|
+
id: deployment
|
|
51
|
+
uses: actions/deploy-pages@v5
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
permalink: /404.html
|
|
3
|
+
layout: page
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<style type="text/css" media="screen">
|
|
7
|
+
.container {
|
|
8
|
+
margin: 10px auto;
|
|
9
|
+
max-width: 600px;
|
|
10
|
+
text-align: center;
|
|
11
|
+
}
|
|
12
|
+
h1 {
|
|
13
|
+
margin: 30px 0;
|
|
14
|
+
font-size: 4em;
|
|
15
|
+
line-height: 1;
|
|
16
|
+
letter-spacing: -1px;
|
|
17
|
+
}
|
|
18
|
+
</style>
|
|
19
|
+
|
|
20
|
+
<div class="container">
|
|
21
|
+
<h1>404</h1>
|
|
22
|
+
|
|
23
|
+
<p><strong>Page not found :(</strong></p>
|
|
24
|
+
<p>The requested page could not be found.</p>
|
|
25
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
source "https://rubygems.org"
|
|
2
|
+
# gem "jekyll", "~> 4.4.1"
|
|
3
|
+
# gem "minima", "~> 2.5"
|
|
4
|
+
gem "github-pages", group: :jekyll_plugins
|
|
5
|
+
group :jekyll_plugins do
|
|
6
|
+
gem "jekyll-feed", "~> 0.12"
|
|
7
|
+
gem "jekyll-remote-theme"
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
11
|
+
# and associated library.
|
|
12
|
+
platforms :mingw, :x64_mingw, :mswin, :jruby do
|
|
13
|
+
gem "tzinfo", ">= 1", "< 3"
|
|
14
|
+
gem "tzinfo-data"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
# Performance-booster for watching directories on Windows
|
|
18
|
+
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
|
19
|
+
|
|
20
|
+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
|
|
21
|
+
# do not have a Java counterpart.
|
|
22
|
+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
activesupport (7.1.6)
|
|
5
|
+
base64
|
|
6
|
+
benchmark (>= 0.3)
|
|
7
|
+
bigdecimal
|
|
8
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
9
|
+
connection_pool (>= 2.2.5)
|
|
10
|
+
drb
|
|
11
|
+
i18n (>= 1.6, < 2)
|
|
12
|
+
logger (>= 1.4.2)
|
|
13
|
+
minitest (>= 5.1)
|
|
14
|
+
mutex_m
|
|
15
|
+
securerandom (>= 0.3)
|
|
16
|
+
tzinfo (~> 2.0)
|
|
17
|
+
addressable (2.9.0)
|
|
18
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
19
|
+
base64 (0.3.0)
|
|
20
|
+
benchmark (0.5.0)
|
|
21
|
+
bigdecimal (4.1.1)
|
|
22
|
+
coffee-script (2.4.1)
|
|
23
|
+
coffee-script-source
|
|
24
|
+
execjs
|
|
25
|
+
coffee-script-source (1.12.2)
|
|
26
|
+
colorator (1.1.0)
|
|
27
|
+
commonmarker (0.23.12)
|
|
28
|
+
concurrent-ruby (1.3.6)
|
|
29
|
+
connection_pool (2.5.5)
|
|
30
|
+
csv (3.3.5)
|
|
31
|
+
dnsruby (1.73.1)
|
|
32
|
+
base64 (>= 0.2)
|
|
33
|
+
logger (~> 1.6)
|
|
34
|
+
simpleidn (~> 0.2.1)
|
|
35
|
+
drb (2.2.3)
|
|
36
|
+
em-websocket (0.5.3)
|
|
37
|
+
eventmachine (>= 0.12.9)
|
|
38
|
+
http_parser.rb (~> 0)
|
|
39
|
+
ethon (0.18.0)
|
|
40
|
+
ffi (>= 1.15.0)
|
|
41
|
+
logger
|
|
42
|
+
eventmachine (1.2.7)
|
|
43
|
+
execjs (2.10.1)
|
|
44
|
+
faraday (2.14.1)
|
|
45
|
+
faraday-net_http (>= 2.0, < 3.5)
|
|
46
|
+
json
|
|
47
|
+
logger
|
|
48
|
+
faraday-net_http (3.4.2)
|
|
49
|
+
net-http (~> 0.5)
|
|
50
|
+
ffi (1.17.4)
|
|
51
|
+
forwardable-extended (2.6.0)
|
|
52
|
+
gemoji (4.1.0)
|
|
53
|
+
github-pages (232)
|
|
54
|
+
github-pages-health-check (= 1.18.2)
|
|
55
|
+
jekyll (= 3.10.0)
|
|
56
|
+
jekyll-avatar (= 0.8.0)
|
|
57
|
+
jekyll-coffeescript (= 1.2.2)
|
|
58
|
+
jekyll-commonmark-ghpages (= 0.5.1)
|
|
59
|
+
jekyll-default-layout (= 0.1.5)
|
|
60
|
+
jekyll-feed (= 0.17.0)
|
|
61
|
+
jekyll-gist (= 1.5.0)
|
|
62
|
+
jekyll-github-metadata (= 2.16.1)
|
|
63
|
+
jekyll-include-cache (= 0.2.1)
|
|
64
|
+
jekyll-mentions (= 1.6.0)
|
|
65
|
+
jekyll-optional-front-matter (= 0.3.2)
|
|
66
|
+
jekyll-paginate (= 1.1.0)
|
|
67
|
+
jekyll-readme-index (= 0.3.0)
|
|
68
|
+
jekyll-redirect-from (= 0.16.0)
|
|
69
|
+
jekyll-relative-links (= 0.6.1)
|
|
70
|
+
jekyll-remote-theme (= 0.4.3)
|
|
71
|
+
jekyll-sass-converter (= 1.5.2)
|
|
72
|
+
jekyll-seo-tag (= 2.8.0)
|
|
73
|
+
jekyll-sitemap (= 1.4.0)
|
|
74
|
+
jekyll-swiss (= 1.0.0)
|
|
75
|
+
jekyll-theme-architect (= 0.2.0)
|
|
76
|
+
jekyll-theme-cayman (= 0.2.0)
|
|
77
|
+
jekyll-theme-dinky (= 0.2.0)
|
|
78
|
+
jekyll-theme-hacker (= 0.2.0)
|
|
79
|
+
jekyll-theme-leap-day (= 0.2.0)
|
|
80
|
+
jekyll-theme-merlot (= 0.2.0)
|
|
81
|
+
jekyll-theme-midnight (= 0.2.0)
|
|
82
|
+
jekyll-theme-minimal (= 0.2.0)
|
|
83
|
+
jekyll-theme-modernist (= 0.2.0)
|
|
84
|
+
jekyll-theme-primer (= 0.6.0)
|
|
85
|
+
jekyll-theme-slate (= 0.2.0)
|
|
86
|
+
jekyll-theme-tactile (= 0.2.0)
|
|
87
|
+
jekyll-theme-time-machine (= 0.2.0)
|
|
88
|
+
jekyll-titles-from-headings (= 0.5.3)
|
|
89
|
+
jemoji (= 0.13.0)
|
|
90
|
+
kramdown (= 2.4.0)
|
|
91
|
+
kramdown-parser-gfm (= 1.1.0)
|
|
92
|
+
liquid (= 4.0.4)
|
|
93
|
+
mercenary (~> 0.3)
|
|
94
|
+
minima (= 2.5.1)
|
|
95
|
+
nokogiri (>= 1.16.2, < 2.0)
|
|
96
|
+
rouge (= 3.30.0)
|
|
97
|
+
terminal-table (~> 1.4)
|
|
98
|
+
webrick (~> 1.8)
|
|
99
|
+
github-pages-health-check (1.18.2)
|
|
100
|
+
addressable (~> 2.3)
|
|
101
|
+
dnsruby (~> 1.60)
|
|
102
|
+
octokit (>= 4, < 8)
|
|
103
|
+
public_suffix (>= 3.0, < 6.0)
|
|
104
|
+
typhoeus (~> 1.3)
|
|
105
|
+
html-pipeline (2.14.3)
|
|
106
|
+
activesupport (>= 2)
|
|
107
|
+
nokogiri (>= 1.4)
|
|
108
|
+
http_parser.rb (0.8.1)
|
|
109
|
+
i18n (1.14.8)
|
|
110
|
+
concurrent-ruby (~> 1.0)
|
|
111
|
+
jekyll (3.10.0)
|
|
112
|
+
addressable (~> 2.4)
|
|
113
|
+
colorator (~> 1.0)
|
|
114
|
+
csv (~> 3.0)
|
|
115
|
+
em-websocket (~> 0.5)
|
|
116
|
+
i18n (>= 0.7, < 2)
|
|
117
|
+
jekyll-sass-converter (~> 1.0)
|
|
118
|
+
jekyll-watch (~> 2.0)
|
|
119
|
+
kramdown (>= 1.17, < 3)
|
|
120
|
+
liquid (~> 4.0)
|
|
121
|
+
mercenary (~> 0.3.3)
|
|
122
|
+
pathutil (~> 0.9)
|
|
123
|
+
rouge (>= 1.7, < 4)
|
|
124
|
+
safe_yaml (~> 1.0)
|
|
125
|
+
webrick (>= 1.0)
|
|
126
|
+
jekyll-avatar (0.8.0)
|
|
127
|
+
jekyll (>= 3.0, < 5.0)
|
|
128
|
+
jekyll-coffeescript (1.2.2)
|
|
129
|
+
coffee-script (~> 2.2)
|
|
130
|
+
coffee-script-source (~> 1.12)
|
|
131
|
+
jekyll-commonmark (1.4.0)
|
|
132
|
+
commonmarker (~> 0.22)
|
|
133
|
+
jekyll-commonmark-ghpages (0.5.1)
|
|
134
|
+
commonmarker (>= 0.23.7, < 1.1.0)
|
|
135
|
+
jekyll (>= 3.9, < 4.0)
|
|
136
|
+
jekyll-commonmark (~> 1.4.0)
|
|
137
|
+
rouge (>= 2.0, < 5.0)
|
|
138
|
+
jekyll-default-layout (0.1.5)
|
|
139
|
+
jekyll (>= 3.0, < 5.0)
|
|
140
|
+
jekyll-feed (0.17.0)
|
|
141
|
+
jekyll (>= 3.7, < 5.0)
|
|
142
|
+
jekyll-gist (1.5.0)
|
|
143
|
+
octokit (~> 4.2)
|
|
144
|
+
jekyll-github-metadata (2.16.1)
|
|
145
|
+
jekyll (>= 3.4, < 5.0)
|
|
146
|
+
octokit (>= 4, < 7, != 4.4.0)
|
|
147
|
+
jekyll-include-cache (0.2.1)
|
|
148
|
+
jekyll (>= 3.7, < 5.0)
|
|
149
|
+
jekyll-mentions (1.6.0)
|
|
150
|
+
html-pipeline (~> 2.3)
|
|
151
|
+
jekyll (>= 3.7, < 5.0)
|
|
152
|
+
jekyll-optional-front-matter (0.3.2)
|
|
153
|
+
jekyll (>= 3.0, < 5.0)
|
|
154
|
+
jekyll-paginate (1.1.0)
|
|
155
|
+
jekyll-readme-index (0.3.0)
|
|
156
|
+
jekyll (>= 3.0, < 5.0)
|
|
157
|
+
jekyll-redirect-from (0.16.0)
|
|
158
|
+
jekyll (>= 3.3, < 5.0)
|
|
159
|
+
jekyll-relative-links (0.6.1)
|
|
160
|
+
jekyll (>= 3.3, < 5.0)
|
|
161
|
+
jekyll-remote-theme (0.4.3)
|
|
162
|
+
addressable (~> 2.0)
|
|
163
|
+
jekyll (>= 3.5, < 5.0)
|
|
164
|
+
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
|
|
165
|
+
rubyzip (>= 1.3.0, < 3.0)
|
|
166
|
+
jekyll-sass-converter (1.5.2)
|
|
167
|
+
sass (~> 3.4)
|
|
168
|
+
jekyll-seo-tag (2.8.0)
|
|
169
|
+
jekyll (>= 3.8, < 5.0)
|
|
170
|
+
jekyll-sitemap (1.4.0)
|
|
171
|
+
jekyll (>= 3.7, < 5.0)
|
|
172
|
+
jekyll-swiss (1.0.0)
|
|
173
|
+
jekyll-theme-architect (0.2.0)
|
|
174
|
+
jekyll (> 3.5, < 5.0)
|
|
175
|
+
jekyll-seo-tag (~> 2.0)
|
|
176
|
+
jekyll-theme-cayman (0.2.0)
|
|
177
|
+
jekyll (> 3.5, < 5.0)
|
|
178
|
+
jekyll-seo-tag (~> 2.0)
|
|
179
|
+
jekyll-theme-dinky (0.2.0)
|
|
180
|
+
jekyll (> 3.5, < 5.0)
|
|
181
|
+
jekyll-seo-tag (~> 2.0)
|
|
182
|
+
jekyll-theme-hacker (0.2.0)
|
|
183
|
+
jekyll (> 3.5, < 5.0)
|
|
184
|
+
jekyll-seo-tag (~> 2.0)
|
|
185
|
+
jekyll-theme-leap-day (0.2.0)
|
|
186
|
+
jekyll (> 3.5, < 5.0)
|
|
187
|
+
jekyll-seo-tag (~> 2.0)
|
|
188
|
+
jekyll-theme-merlot (0.2.0)
|
|
189
|
+
jekyll (> 3.5, < 5.0)
|
|
190
|
+
jekyll-seo-tag (~> 2.0)
|
|
191
|
+
jekyll-theme-midnight (0.2.0)
|
|
192
|
+
jekyll (> 3.5, < 5.0)
|
|
193
|
+
jekyll-seo-tag (~> 2.0)
|
|
194
|
+
jekyll-theme-minimal (0.2.0)
|
|
195
|
+
jekyll (> 3.5, < 5.0)
|
|
196
|
+
jekyll-seo-tag (~> 2.0)
|
|
197
|
+
jekyll-theme-modernist (0.2.0)
|
|
198
|
+
jekyll (> 3.5, < 5.0)
|
|
199
|
+
jekyll-seo-tag (~> 2.0)
|
|
200
|
+
jekyll-theme-primer (0.6.0)
|
|
201
|
+
jekyll (> 3.5, < 5.0)
|
|
202
|
+
jekyll-github-metadata (~> 2.9)
|
|
203
|
+
jekyll-seo-tag (~> 2.0)
|
|
204
|
+
jekyll-theme-slate (0.2.0)
|
|
205
|
+
jekyll (> 3.5, < 5.0)
|
|
206
|
+
jekyll-seo-tag (~> 2.0)
|
|
207
|
+
jekyll-theme-tactile (0.2.0)
|
|
208
|
+
jekyll (> 3.5, < 5.0)
|
|
209
|
+
jekyll-seo-tag (~> 2.0)
|
|
210
|
+
jekyll-theme-time-machine (0.2.0)
|
|
211
|
+
jekyll (> 3.5, < 5.0)
|
|
212
|
+
jekyll-seo-tag (~> 2.0)
|
|
213
|
+
jekyll-titles-from-headings (0.5.3)
|
|
214
|
+
jekyll (>= 3.3, < 5.0)
|
|
215
|
+
jekyll-watch (2.2.1)
|
|
216
|
+
listen (~> 3.0)
|
|
217
|
+
jemoji (0.13.0)
|
|
218
|
+
gemoji (>= 3, < 5)
|
|
219
|
+
html-pipeline (~> 2.2)
|
|
220
|
+
jekyll (>= 3.0, < 5.0)
|
|
221
|
+
json (2.19.3)
|
|
222
|
+
kramdown (2.4.0)
|
|
223
|
+
rexml
|
|
224
|
+
kramdown-parser-gfm (1.1.0)
|
|
225
|
+
kramdown (~> 2.0)
|
|
226
|
+
liquid (4.0.4)
|
|
227
|
+
listen (3.10.0)
|
|
228
|
+
logger
|
|
229
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
230
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
231
|
+
logger (1.7.0)
|
|
232
|
+
mercenary (0.3.6)
|
|
233
|
+
mini_portile2 (2.8.9)
|
|
234
|
+
minima (2.5.1)
|
|
235
|
+
jekyll (>= 3.5, < 5.0)
|
|
236
|
+
jekyll-feed (~> 0.9)
|
|
237
|
+
jekyll-seo-tag (~> 2.1)
|
|
238
|
+
minitest (5.26.1)
|
|
239
|
+
mutex_m (0.3.0)
|
|
240
|
+
net-http (0.9.1)
|
|
241
|
+
uri (>= 0.11.1)
|
|
242
|
+
nokogiri (1.17.2)
|
|
243
|
+
mini_portile2 (~> 2.8.2)
|
|
244
|
+
racc (~> 1.4)
|
|
245
|
+
nokogiri (1.17.2-arm64-darwin)
|
|
246
|
+
racc (~> 1.4)
|
|
247
|
+
nokogiri (1.17.2-x86_64-darwin)
|
|
248
|
+
racc (~> 1.4)
|
|
249
|
+
nokogiri (1.17.2-x86_64-linux)
|
|
250
|
+
racc (~> 1.4)
|
|
251
|
+
octokit (4.25.1)
|
|
252
|
+
faraday (>= 1, < 3)
|
|
253
|
+
sawyer (~> 0.9)
|
|
254
|
+
pathutil (0.16.2)
|
|
255
|
+
forwardable-extended (~> 2.6)
|
|
256
|
+
public_suffix (5.1.1)
|
|
257
|
+
racc (1.8.1)
|
|
258
|
+
rb-fsevent (0.11.2)
|
|
259
|
+
rb-inotify (0.11.1)
|
|
260
|
+
ffi (~> 1.0)
|
|
261
|
+
rexml (3.4.4)
|
|
262
|
+
rouge (3.30.0)
|
|
263
|
+
rubyzip (2.4.1)
|
|
264
|
+
safe_yaml (1.0.5)
|
|
265
|
+
sass (3.7.4)
|
|
266
|
+
sass-listen (~> 4.0.0)
|
|
267
|
+
sass-listen (4.0.0)
|
|
268
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
269
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
270
|
+
sawyer (0.9.3)
|
|
271
|
+
addressable (>= 2.3.5)
|
|
272
|
+
faraday (>= 0.17.3, < 3)
|
|
273
|
+
securerandom (0.3.2)
|
|
274
|
+
simpleidn (0.2.3)
|
|
275
|
+
terminal-table (1.8.0)
|
|
276
|
+
unicode-display_width (~> 1.1, >= 1.1.1)
|
|
277
|
+
typhoeus (1.6.0)
|
|
278
|
+
ethon (>= 0.18.0)
|
|
279
|
+
tzinfo (2.0.6)
|
|
280
|
+
concurrent-ruby (~> 1.0)
|
|
281
|
+
unicode-display_width (1.8.0)
|
|
282
|
+
uri (1.1.1)
|
|
283
|
+
webrick (1.9.2)
|
|
284
|
+
|
|
285
|
+
PLATFORMS
|
|
286
|
+
arm64-darwin
|
|
287
|
+
ruby
|
|
288
|
+
x86_64-darwin
|
|
289
|
+
x86_64-linux
|
|
290
|
+
|
|
291
|
+
DEPENDENCIES
|
|
292
|
+
github-pages
|
|
293
|
+
http_parser.rb (~> 0.6.0)
|
|
294
|
+
jekyll-feed (~> 0.12)
|
|
295
|
+
jekyll-remote-theme
|
|
296
|
+
tzinfo (>= 1, < 3)
|
|
297
|
+
tzinfo-data
|
|
298
|
+
wdm (~> 0.1)
|
|
299
|
+
|
|
300
|
+
BUNDLED WITH
|
|
301
|
+
2.5.23
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Welcome to Jekyll!
|
|
2
|
+
#
|
|
3
|
+
# This config file is meant for settings that affect your whole blog, values
|
|
4
|
+
# which you are expected to set up once and rarely edit after that. If you find
|
|
5
|
+
# yourself editing this file very often, consider using Jekyll's data files
|
|
6
|
+
# feature for the data you need to update frequently.
|
|
7
|
+
#
|
|
8
|
+
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
|
9
|
+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
|
10
|
+
#
|
|
11
|
+
# If you need help with YAML syntax, here are some quick references for you:
|
|
12
|
+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
|
13
|
+
# https://learnxinyminutes.com/docs/yaml/
|
|
14
|
+
#
|
|
15
|
+
# Site settings
|
|
16
|
+
# These are used to personalize your new site. If you look in the HTML files,
|
|
17
|
+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
|
18
|
+
# You can create any custom variable you would like, and they will be accessible
|
|
19
|
+
# in the templates via {{ site.myvariable }}.
|
|
20
|
+
|
|
21
|
+
title: FASTEN Configuration File Designer
|
|
22
|
+
baseurl: "/FASTEN"
|
|
23
|
+
source: docs
|
|
24
|
+
url: "https://k1jackson.github.io"
|
|
25
|
+
email: k1jackson@ucsd.edu
|
|
26
|
+
# description: >- # this means to ignore newlines until "baseurl:"
|
|
27
|
+
# Write an awesome description for your new site here. You can edit this
|
|
28
|
+
# line in _config.yml. It will appear in your document head meta (for
|
|
29
|
+
# Google search results) and in your feed.xml site description.
|
|
30
|
+
github_username: k1jackson
|
|
31
|
+
|
|
32
|
+
# Build settings
|
|
33
|
+
# theme: pages-themes/cayman@v0.2.0
|
|
34
|
+
remote_theme: pages-themes/cayman
|
|
35
|
+
plugins:
|
|
36
|
+
- jekyll-remote-theme
|
|
37
|
+
- jekyll-feed
|
|
38
|
+
|
|
39
|
+
# Exclude from processing.
|
|
40
|
+
# The following items will not be processed, by default.
|
|
41
|
+
# Any item listed under the `exclude:` key here will be automatically added to
|
|
42
|
+
# the internal "default list".
|
|
43
|
+
#
|
|
44
|
+
# Excluded items can be processed by explicitly listing the directories or
|
|
45
|
+
# their entries' file path in the `include:` list.
|
|
46
|
+
#
|
|
47
|
+
# exclude:
|
|
48
|
+
# - .sass-cache/
|
|
49
|
+
# - .jekyll-cache/
|
|
50
|
+
# - gemfiles/
|
|
51
|
+
# - Gemfile
|
|
52
|
+
# - Gemfile.lock
|
|
53
|
+
# - node_modules/
|
|
54
|
+
# - vendor/bundle/
|
|
55
|
+
# - vendor/cache/
|
|
56
|
+
# - vendor/gems/
|
|
57
|
+
# - vendor/ruby/
|