mirror of
https://github.com/MillironX/Kelpie.jl.git
synced 2025-01-15 09:19:07 -05:00
Files generated by PkgTemplates
PkgTemplates version: 0.7.26
This commit is contained in:
parent
d3294414ee
commit
7df48e8cf5
20 changed files with 466 additions and 0 deletions
33
.appveyor.yml
Normal file
33
.appveyor.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Documentation: https://github.com/JuliaCI/Appveyor.jl
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- julia_version: 1.6
|
||||||
|
- julia_version: 1.7
|
||||||
|
- julia_version: nightly
|
||||||
|
platform:
|
||||||
|
- x64
|
||||||
|
cache:
|
||||||
|
- '%USERPROFILE%\.julia\artifacts'
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
- julia_version: nightly
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- /release-.*/
|
||||||
|
notifications:
|
||||||
|
- provider: Email
|
||||||
|
on_build_success: false
|
||||||
|
on_build_failure: false
|
||||||
|
on_build_status_changed: false
|
||||||
|
install:
|
||||||
|
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
|
||||||
|
build_script:
|
||||||
|
- echo "%JL_BUILD_SCRIPT%"
|
||||||
|
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
|
||||||
|
test_script:
|
||||||
|
- echo "%JL_TEST_SCRIPT%"
|
||||||
|
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
|
||||||
|
on_success:
|
||||||
|
- echo "%JL_CODECOV_SCRIPT%"
|
||||||
|
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
|
18
.cirrus.yml
Normal file
18
.cirrus.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
freebsd_instance:
|
||||||
|
image: freebsd-12-0-release-amd64
|
||||||
|
task:
|
||||||
|
name: FreeBSD
|
||||||
|
artifacts_cache:
|
||||||
|
folder: ~/.julia/artifacts
|
||||||
|
env:
|
||||||
|
JULIA_VERSION: 1.6
|
||||||
|
JULIA_VERSION: 1.7
|
||||||
|
JULIA_VERSION: nightly
|
||||||
|
install_script:
|
||||||
|
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"
|
||||||
|
build_script:
|
||||||
|
- cirrusjl build
|
||||||
|
test_script:
|
||||||
|
- cirrusjl test
|
||||||
|
coverage_script:
|
||||||
|
- cirrusjl coverage codecov coveralls
|
27
.drone.star
Normal file
27
.drone.star
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
def main(ctx):
|
||||||
|
pipelines = []
|
||||||
|
for arch in ["amd64"]:
|
||||||
|
for julia in ["1.6", "1.7"]:
|
||||||
|
pipelines.append(pipeline(arch, julia))
|
||||||
|
return pipelines
|
||||||
|
|
||||||
|
def pipeline(arch, julia):
|
||||||
|
return {
|
||||||
|
"kind": "pipeline",
|
||||||
|
"type": "docker",
|
||||||
|
"name": "Julia %s - %s" % (julia, arch),
|
||||||
|
"platform": {
|
||||||
|
"os": "linux",
|
||||||
|
"arch": arch,
|
||||||
|
},
|
||||||
|
"steps": [
|
||||||
|
{
|
||||||
|
"name": "test",
|
||||||
|
"image": "julia:%s" % julia,
|
||||||
|
"commands": [
|
||||||
|
"julia -e 'using InteractiveUtils; versioninfo()'",
|
||||||
|
"julia --project=@. -e 'using Pkg; Pkg.instantiate(); Pkg.build(); Pkg.test();'",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
68
.github/workflows/CI.yml
vendored
Normal file
68
.github/workflows/CI.yml
vendored
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
tags: '*'
|
||||||
|
pull_request:
|
||||||
|
concurrency:
|
||||||
|
# Skip intermediate builds: always.
|
||||||
|
# Cancel intermediate builds: only if it is a pull request build.
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
version:
|
||||||
|
- '1.6'
|
||||||
|
- '1.7'
|
||||||
|
- 'nightly'
|
||||||
|
os:
|
||||||
|
- ubuntu-latest
|
||||||
|
- macOS-latest
|
||||||
|
- windows-latest
|
||||||
|
arch:
|
||||||
|
- x64
|
||||||
|
- x86
|
||||||
|
exclude:
|
||||||
|
- os: macOS-latest
|
||||||
|
arch: x86
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: julia-actions/setup-julia@v1
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.version }}
|
||||||
|
arch: ${{ matrix.arch }}
|
||||||
|
- uses: julia-actions/cache@v1
|
||||||
|
- uses: julia-actions/julia-buildpkg@v1
|
||||||
|
- uses: julia-actions/julia-runtest@v1
|
||||||
|
- uses: julia-actions/julia-processcoverage@v1
|
||||||
|
- uses: codecov/codecov-action@v2
|
||||||
|
with:
|
||||||
|
files: lcov.info
|
||||||
|
- uses: julia-actions/julia-uploadcoveralls@v1
|
||||||
|
env:
|
||||||
|
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
|
||||||
|
docs:
|
||||||
|
name: Documentation
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: julia-actions/setup-julia@v1
|
||||||
|
with:
|
||||||
|
version: '1'
|
||||||
|
- uses: julia-actions/julia-buildpkg@v1
|
||||||
|
- uses: julia-actions/julia-docdeploy@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
|
||||||
|
- run: |
|
||||||
|
julia --project=docs -e '
|
||||||
|
using Documenter: DocMeta, doctest
|
||||||
|
using Kelpie
|
||||||
|
DocMeta.setdocmeta!(Kelpie, :DocTestSetup, :(using Kelpie); recursive=true)
|
||||||
|
doctest(Kelpie)'
|
16
.github/workflows/CompatHelper.yml
vendored
Normal file
16
.github/workflows/CompatHelper.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: CompatHelper
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: 0 0 * * *
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
CompatHelper:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Pkg.add("CompatHelper")
|
||||||
|
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
|
||||||
|
- name: CompatHelper.main()
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
|
||||||
|
run: julia -e 'using CompatHelper; CompatHelper.main()'
|
15
.github/workflows/TagBot.yml
vendored
Normal file
15
.github/workflows/TagBot.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
name: TagBot
|
||||||
|
on:
|
||||||
|
issue_comment:
|
||||||
|
types:
|
||||||
|
- created
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
TagBot:
|
||||||
|
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: JuliaRegistries/TagBot@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
ssh: ${{ secrets.DOCUMENTER_KEY }}
|
14
.github/workflows/register.yml
vendored
Normal file
14
.github/workflows/register.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
name: Register Package
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: Version to register or component to bump
|
||||||
|
required: true
|
||||||
|
jobs:
|
||||||
|
register:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: julia-actions/RegisterAction@latest
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
*.jl.*.cov
|
||||||
|
*.jl.cov
|
||||||
|
*.jl.mem
|
||||||
|
/Manifest.toml
|
||||||
|
/docs/build/
|
28
.gitlab-ci.yml
Normal file
28
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
.script:
|
||||||
|
script:
|
||||||
|
- |
|
||||||
|
julia --project=@. -e '
|
||||||
|
using Pkg
|
||||||
|
Pkg.build()
|
||||||
|
Pkg.test(coverage=true)'
|
||||||
|
.coverage:
|
||||||
|
coverage: /Test coverage (\d+\.\d+%)/
|
||||||
|
after_script:
|
||||||
|
- |
|
||||||
|
julia -e '
|
||||||
|
using Pkg
|
||||||
|
Pkg.add("Coverage")
|
||||||
|
using Coverage
|
||||||
|
c, t = get_summary(process_folder())
|
||||||
|
using Printf
|
||||||
|
@printf "Test coverage %.2f%%\n" 100c / t'
|
||||||
|
Julia 1.6:
|
||||||
|
image: julia:1.6
|
||||||
|
extends:
|
||||||
|
- .script
|
||||||
|
- .coverage
|
||||||
|
Julia 1.7:
|
||||||
|
image: julia:1.7
|
||||||
|
extends:
|
||||||
|
- .script
|
||||||
|
- .coverage
|
32
.travis.yml
Normal file
32
.travis.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Documentation: http://docs.travis-ci.com/user/languages/julia
|
||||||
|
language: julia
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
|
julia:
|
||||||
|
- 1.6
|
||||||
|
- 1.7
|
||||||
|
- nightly
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
arch:
|
||||||
|
- x64
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- ~/.julia/artifacts
|
||||||
|
jobs:
|
||||||
|
fast_finish: true
|
||||||
|
allow_failures:
|
||||||
|
- julia: nightly
|
||||||
|
after_success:
|
||||||
|
- |
|
||||||
|
julia -e '
|
||||||
|
using Pkg
|
||||||
|
Pkg.add("Coverage")
|
||||||
|
using Coverage
|
||||||
|
Codecov.submit(process_folder())'
|
||||||
|
- |
|
||||||
|
julia -e '
|
||||||
|
using Pkg
|
||||||
|
Pkg.add("Coverage")
|
||||||
|
using Coverage
|
||||||
|
Coveralls.submit(process_folder())'
|
8
CITATION.bib
Normal file
8
CITATION.bib
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
@misc{Kelpie.jl,
|
||||||
|
author = {Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> and contributors},
|
||||||
|
title = {Kelpie.jl},
|
||||||
|
url = {https://github.com/MillironX/Kelpie.jl},
|
||||||
|
version = {v0.1.0},
|
||||||
|
year = {2022},
|
||||||
|
month = {3}
|
||||||
|
}
|
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2022 Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> and contributors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
13
Project.toml
Normal file
13
Project.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Kelpie"
|
||||||
|
uuid = "1b112299-d6bc-44e2-912a-478f25731460"
|
||||||
|
authors = ["Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> and contributors"]
|
||||||
|
version = "0.1.0"
|
||||||
|
|
||||||
|
[compat]
|
||||||
|
julia = "1.6"
|
||||||
|
|
||||||
|
[extras]
|
||||||
|
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
||||||
|
|
||||||
|
[targets]
|
||||||
|
test = ["Test"]
|
16
README.md
Normal file
16
README.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Kelpie
|
||||||
|
|
||||||
|
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://MillironX.github.io/Kelpie.jl/stable)
|
||||||
|
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://MillironX.github.io/Kelpie.jl/dev)
|
||||||
|
[![Build Status](https://github.com/MillironX/Kelpie.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/MillironX/Kelpie.jl/actions/workflows/CI.yml?query=branch%3Amaster)
|
||||||
|
[![Build Status](https://github.com/MillironX/Kelpie.jl/badges/master/pipeline.svg)](https://github.com/MillironX/Kelpie.jl/pipelines)
|
||||||
|
[![Coverage](https://github.com/MillironX/Kelpie.jl/badges/master/coverage.svg)](https://github.com/MillironX/Kelpie.jl/commits/master)
|
||||||
|
[![Build Status](https://travis-ci.com/MillironX/Kelpie.jl.svg?branch=master)](https://travis-ci.com/MillironX/Kelpie.jl)
|
||||||
|
[![Build Status](https://ci.appveyor.com/api/projects/status/github/MillironX/Kelpie.jl?svg=true)](https://ci.appveyor.com/project/MillironX/Kelpie-jl)
|
||||||
|
[![Build Status](https://cloud.drone.io/api/badges/MillironX/Kelpie.jl/status.svg)](https://cloud.drone.io/MillironX/Kelpie.jl)
|
||||||
|
[![Build Status](https://api.cirrus-ci.com/github/MillironX/Kelpie.jl.svg)](https://cirrus-ci.com/github/MillironX/Kelpie.jl)
|
||||||
|
[![Coverage](https://codecov.io/gh/MillironX/Kelpie.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MillironX/Kelpie.jl)
|
||||||
|
[![Coverage](https://coveralls.io/repos/github/MillironX/Kelpie.jl/badge.svg?branch=master)](https://coveralls.io/github/MillironX/Kelpie.jl?branch=master)
|
||||||
|
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
|
||||||
|
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
|
||||||
|
[![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/K/Kelpie.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/report.html)
|
100
docs/Manifest.toml
Normal file
100
docs/Manifest.toml
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
# This file is machine-generated - editing it directly is not advised
|
||||||
|
|
||||||
|
julia_version = "1.7.2"
|
||||||
|
manifest_format = "2.0"
|
||||||
|
|
||||||
|
[[deps.ANSIColoredPrinters]]
|
||||||
|
git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c"
|
||||||
|
uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"
|
||||||
|
version = "0.0.1"
|
||||||
|
|
||||||
|
[[deps.Base64]]
|
||||||
|
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
|
||||||
|
|
||||||
|
[[deps.Dates]]
|
||||||
|
deps = ["Printf"]
|
||||||
|
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
|
||||||
|
|
||||||
|
[[deps.DocStringExtensions]]
|
||||||
|
deps = ["LibGit2"]
|
||||||
|
git-tree-sha1 = "b19534d1895d702889b219c382a6e18010797f0b"
|
||||||
|
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
|
||||||
|
version = "0.8.6"
|
||||||
|
|
||||||
|
[[deps.Documenter]]
|
||||||
|
deps = ["ANSIColoredPrinters", "Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
|
||||||
|
git-tree-sha1 = "7d9a46421aef53cbd6b8ecc40c3dcbacbceaf40e"
|
||||||
|
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
|
||||||
|
version = "0.27.15"
|
||||||
|
|
||||||
|
[[deps.IOCapture]]
|
||||||
|
deps = ["Logging", "Random"]
|
||||||
|
git-tree-sha1 = "f7be53659ab06ddc986428d3a9dcc95f6fa6705a"
|
||||||
|
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
|
||||||
|
version = "0.2.2"
|
||||||
|
|
||||||
|
[[deps.InteractiveUtils]]
|
||||||
|
deps = ["Markdown"]
|
||||||
|
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
|
||||||
|
|
||||||
|
[[deps.JSON]]
|
||||||
|
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
|
||||||
|
git-tree-sha1 = "3c837543ddb02250ef42f4738347454f95079d4e"
|
||||||
|
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
|
||||||
|
version = "0.21.3"
|
||||||
|
|
||||||
|
[[deps.Kelpie]]
|
||||||
|
path = ".."
|
||||||
|
uuid = "1b112299-d6bc-44e2-912a-478f25731460"
|
||||||
|
version = "0.1.0"
|
||||||
|
|
||||||
|
[[deps.LibGit2]]
|
||||||
|
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
|
||||||
|
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
|
||||||
|
|
||||||
|
[[deps.Logging]]
|
||||||
|
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
|
||||||
|
|
||||||
|
[[deps.Markdown]]
|
||||||
|
deps = ["Base64"]
|
||||||
|
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
|
||||||
|
|
||||||
|
[[deps.Mmap]]
|
||||||
|
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
|
||||||
|
|
||||||
|
[[deps.NetworkOptions]]
|
||||||
|
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
|
||||||
|
|
||||||
|
[[deps.Parsers]]
|
||||||
|
deps = ["Dates"]
|
||||||
|
git-tree-sha1 = "621f4f3b4977325b9128d5fae7a8b4829a0c2222"
|
||||||
|
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
|
||||||
|
version = "2.2.4"
|
||||||
|
|
||||||
|
[[deps.Printf]]
|
||||||
|
deps = ["Unicode"]
|
||||||
|
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
|
||||||
|
|
||||||
|
[[deps.REPL]]
|
||||||
|
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
|
||||||
|
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
|
||||||
|
|
||||||
|
[[deps.Random]]
|
||||||
|
deps = ["SHA", "Serialization"]
|
||||||
|
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
|
||||||
|
|
||||||
|
[[deps.SHA]]
|
||||||
|
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
|
||||||
|
|
||||||
|
[[deps.Serialization]]
|
||||||
|
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
|
||||||
|
|
||||||
|
[[deps.Sockets]]
|
||||||
|
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
|
||||||
|
|
||||||
|
[[deps.Test]]
|
||||||
|
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
|
||||||
|
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
||||||
|
|
||||||
|
[[deps.Unicode]]
|
||||||
|
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
|
3
docs/Project.toml
Normal file
3
docs/Project.toml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[deps]
|
||||||
|
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
|
||||||
|
Kelpie = "1b112299-d6bc-44e2-912a-478f25731460"
|
24
docs/make.jl
Normal file
24
docs/make.jl
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
using Kelpie
|
||||||
|
using Documenter
|
||||||
|
|
||||||
|
DocMeta.setdocmeta!(Kelpie, :DocTestSetup, :(using Kelpie); recursive=true)
|
||||||
|
|
||||||
|
makedocs(;
|
||||||
|
modules=[Kelpie],
|
||||||
|
authors="Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> and contributors",
|
||||||
|
repo="https://github.com/MillironX/Kelpie.jl/blob/{commit}{path}#{line}",
|
||||||
|
sitename="Kelpie.jl",
|
||||||
|
format=Documenter.HTML(;
|
||||||
|
prettyurls=get(ENV, "CI", "false") == "true",
|
||||||
|
canonical="https://MillironX.github.io/Kelpie.jl",
|
||||||
|
assets=String[],
|
||||||
|
),
|
||||||
|
pages=[
|
||||||
|
"Home" => "index.md",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
deploydocs(;
|
||||||
|
repo="github.com/MillironX/Kelpie.jl",
|
||||||
|
devbranch="master",
|
||||||
|
)
|
14
docs/src/index.md
Normal file
14
docs/src/index.md
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
```@meta
|
||||||
|
CurrentModule = Kelpie
|
||||||
|
```
|
||||||
|
|
||||||
|
# Kelpie
|
||||||
|
|
||||||
|
Documentation for [Kelpie](https://github.com/MillironX/Kelpie.jl).
|
||||||
|
|
||||||
|
```@index
|
||||||
|
```
|
||||||
|
|
||||||
|
```@autodocs
|
||||||
|
Modules = [Kelpie]
|
||||||
|
```
|
5
src/Kelpie.jl
Normal file
5
src/Kelpie.jl
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
module Kelpie
|
||||||
|
|
||||||
|
# Write your package code here.
|
||||||
|
|
||||||
|
end
|
6
test/runtests.jl
Normal file
6
test/runtests.jl
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
using Kelpie
|
||||||
|
using Test
|
||||||
|
|
||||||
|
@testset "Kelpie.jl" begin
|
||||||
|
# Write your tests here.
|
||||||
|
end
|
Loading…
Reference in a new issue