Skip to content

Commit 3cf5aba

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.16
1 parent 6caf9a5 commit 3cf5aba

File tree

13 files changed

+288
-0
lines changed

13 files changed

+288
-0
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.DS_Store
2+
/Manifest.toml
3+
/docs/build/

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia
2+
language: julia
3+
notifications:
4+
email: false
5+
julia:
6+
- 1.0
7+
- 1.6
8+
- nightly
9+
os:
10+
- linux
11+
arch:
12+
- x64
13+
cache:
14+
directories:
15+
- ~/.julia/artifacts
16+
jobs:
17+
fast_finish: true
18+
allow_failures:
19+
- julia: nightly

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Nathanael Wong <[email protected]>
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.

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "NASAPrecipitation"
2+
uuid = "a018b980-0677-41c0-b9a4-7f34595c2b14"
3+
authors = ["Nathanael Wong <[email protected]>"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "1"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# NASAPrecipitation
2+
3+
[![Build Status](https://travis-ci.com/natgeo-wong/NASAPrecipitation.jl.svg?branch=master)](https://travis-ci.com/natgeo-wong/NASAPrecipitation.jl)

docs/Manifest.toml

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[ArgTools]]
4+
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
5+
6+
[[Artifacts]]
7+
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
8+
9+
[[Base64]]
10+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
11+
12+
[[Dates]]
13+
deps = ["Printf"]
14+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
15+
16+
[[DocStringExtensions]]
17+
deps = ["LibGit2", "Markdown", "Pkg", "Test"]
18+
git-tree-sha1 = "9d4f64f79012636741cf01133158a54b24924c32"
19+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
20+
version = "0.8.4"
21+
22+
[[Documenter]]
23+
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
24+
git-tree-sha1 = "3ebb967819b284dc1e3c0422229b58a40a255649"
25+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
26+
version = "0.26.3"
27+
28+
[[Downloads]]
29+
deps = ["ArgTools", "LibCURL", "NetworkOptions"]
30+
uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
31+
32+
[[IOCapture]]
33+
deps = ["Logging"]
34+
git-tree-sha1 = "377252859f740c217b936cebcd918a44f9b53b59"
35+
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
36+
version = "0.1.1"
37+
38+
[[InteractiveUtils]]
39+
deps = ["Markdown"]
40+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
41+
42+
[[JSON]]
43+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
44+
git-tree-sha1 = "81690084b6198a2e1da36fcfda16eeca9f9f24e4"
45+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
46+
version = "0.21.1"
47+
48+
[[LibCURL]]
49+
deps = ["LibCURL_jll", "MozillaCACerts_jll"]
50+
uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"
51+
52+
[[LibCURL_jll]]
53+
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"]
54+
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"
55+
56+
[[LibGit2]]
57+
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
58+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
59+
60+
[[LibSSH2_jll]]
61+
deps = ["Artifacts", "Libdl", "MbedTLS_jll"]
62+
uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8"
63+
64+
[[Libdl]]
65+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
66+
67+
[[Logging]]
68+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
69+
70+
[[Markdown]]
71+
deps = ["Base64"]
72+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
73+
74+
[[MbedTLS_jll]]
75+
deps = ["Artifacts", "Libdl"]
76+
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
77+
78+
[[Mmap]]
79+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
80+
81+
[[MozillaCACerts_jll]]
82+
uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
83+
84+
[[NASAPrecipitation]]
85+
path = ".."
86+
uuid = "a018b980-0677-41c0-b9a4-7f34595c2b14"
87+
version = "0.1.0"
88+
89+
[[NetworkOptions]]
90+
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
91+
92+
[[Parsers]]
93+
deps = ["Dates"]
94+
git-tree-sha1 = "c8abc88faa3f7a3950832ac5d6e690881590d6dc"
95+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
96+
version = "1.1.0"
97+
98+
[[Pkg]]
99+
deps = ["Artifacts", "Dates", "Downloads", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
100+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
101+
102+
[[Printf]]
103+
deps = ["Unicode"]
104+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
105+
106+
[[REPL]]
107+
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
108+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
109+
110+
[[Random]]
111+
deps = ["Serialization"]
112+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
113+
114+
[[SHA]]
115+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
116+
117+
[[Serialization]]
118+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
119+
120+
[[Sockets]]
121+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
122+
123+
[[TOML]]
124+
deps = ["Dates"]
125+
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
126+
127+
[[Tar]]
128+
deps = ["ArgTools", "SHA"]
129+
uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
130+
131+
[[Test]]
132+
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
133+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
134+
135+
[[UUIDs]]
136+
deps = ["Random", "SHA"]
137+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
138+
139+
[[Unicode]]
140+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
141+
142+
[[Zlib_jll]]
143+
deps = ["Libdl"]
144+
uuid = "83775a58-1f1d-513f-b197-d71354ab007a"
145+
146+
[[nghttp2_jll]]
147+
deps = ["Artifacts", "Libdl"]
148+
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
149+
150+
[[p7zip_jll]]
151+
deps = ["Artifacts", "Libdl"]
152+
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
NASAPrecipitation = "a018b980-0677-41c0-b9a4-7f34595c2b14"

docs/make.jl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using NASAPrecipitation
2+
using Documenter
3+
4+
DocMeta.setdocmeta!(NASAPrecipitation, :DocTestSetup, :(using NASAPrecipitation); recursive=true)
5+
6+
makedocs(;
7+
modules=[NASAPrecipitation],
8+
authors="Nathanael Wong <[email protected]>",
9+
repo="https://github.com/natgeo-wong/NASAPrecipitation.jl/blob/{commit}{path}#{line}",
10+
sitename="NASAPrecipitation.jl",
11+
format=Documenter.HTML(;
12+
prettyurls=get(ENV, "CI", "false") == "true",
13+
assets=String[],
14+
),
15+
pages=[
16+
"Home" => "index.md",
17+
],
18+
)

docs/src/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
```@meta
2+
CurrentModule = NASAPrecipitation
3+
```
4+
5+
# NASAPrecipitation
6+
7+
Documentation for [NASAPrecipitation](https://github.com/natgeo-wong/NASAPrecipitation.jl).
8+
9+
```@index
10+
```
11+
12+
```@autodocs
13+
Modules = [NASAPrecipitation]
14+
```

src/NASAPrecipitation.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module NASAPrecipitation
2+
3+
# Write your package code here.
4+
5+
end

test/runtests.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using NASAPrecipitation
2+
using Test
3+
4+
@testset "NASAPrecipitation.jl" begin
5+
# Write your tests here.
6+
end

0 commit comments

Comments
 (0)