-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename package to H3DDetectorSystems, use Project.toml, require Julia…
… v1.0 Also update CI and add docs generation
- Loading branch information
Showing
18 changed files
with
136 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
*.jl.cov | ||
*.jl.*.cov | ||
*.jl.mem | ||
.ipynb_checkpoints | ||
Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name = "H3DDetectorSystems" | ||
uuid = "9c95c776-90eb-11e9-3b18-358301686b1b" | ||
version = "0.1.0" | ||
|
||
[deps] | ||
ArraysOfArrays = "65a8f2f4-9b39-5baf-92e2-a9cc46fdf018" | ||
BufferedStreams = "e1450e63-4bb3-523b-b2a4-4ffa8c0fd77d" | ||
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc" | ||
|
||
[compat] | ||
julia = "1" | ||
|
||
[extras] | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Test"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
# H3DPolaris.jl | ||
# H3DDetectorSystems.jl | ||
|
||
[](https://oschulz.github.io/H3DDetectorSystems.jl/stable) | ||
[](https://oschulz.github.io/H3DDetectorSystems.jl/dev) | ||
[](LICENSE.md) | ||
[](https://travis-ci.com/oschulz/H3DDetectorSystems.jl) | ||
[](https://ci.appveyor.com/project/oschulz/H3DDetectorSystems-jl) | ||
[](https://codecov.io/gh/oschulz/H3DDetectorSystems.jl) | ||
|
||
Julia package to interact with [H3D](https://h3dgamma.com/) radiation detector | ||
systems. | ||
|
||
Disclaimer: The authors of this package are not affiliated with H3D Inc. | ||
|
||
See the documentation for details: | ||
|
||
## Documentation | ||
|
||
* [Documentation for stable version](https://oschulz.github.io/H3DDetectorSystems.jl/stable) | ||
* [Documentation for development version](https://oschulz.github.io/H3DDetectorSystems.jl/dev) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build/ | ||
site/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
|
||
[compat] | ||
Documenter = "~0.22" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Use | ||
# | ||
# DOCUMENTER_DEBUG=true julia --color=yes make.jl local [nonstrict] [fixdoctests] | ||
# | ||
# for local builds. | ||
|
||
using Documenter | ||
using H3DDetectorSystems | ||
|
||
makedocs( | ||
sitename = "H3DDetectorSystems", | ||
modules = [H3DDetectorSystems], | ||
format = Documenter.HTML( | ||
prettyurls = !("local" in ARGS), | ||
canonical = "https://oschulz.github.io/H3DDetectorSystems.jl/stable/" | ||
), | ||
pages=[ | ||
"Home" => "index.md", | ||
"API" => "api.md", | ||
"LICENSE" => "LICENSE.md", | ||
], | ||
doctest = ("fixdoctests" in ARGS) ? :fix : true, | ||
linkcheck = ("linkcheck" in ARGS), | ||
strict = !("nonstrict" in ARGS), | ||
) | ||
|
||
deploydocs( | ||
repo = "github.com/oschulz/H3DDetectorSystems.jl.git", | ||
forcepush = true | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# LICENSE | ||
|
||
```@eval | ||
using Markdown | ||
Markdown.parse_file(joinpath(@__DIR__, "..", "..", "LICENSE.md")) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# API | ||
|
||
```@meta | ||
DocTestSetup = quote | ||
using H3DDetectorSystems | ||
end | ||
``` | ||
|
||
## Types | ||
|
||
```@index | ||
Order = [:type] | ||
``` | ||
|
||
## Functions | ||
|
||
```@index | ||
Order = [:function] | ||
``` | ||
|
||
# Documentation | ||
|
||
```@autodocs | ||
Modules = [H3DDetectorSystems] | ||
Order = [:type, :function] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# H3DDetectorSystems.jl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# This file is a part of H3DPolaris.jl, licensed under the MIT License (MIT). | ||
# This file is a part of H3DDetectorSystems.jl, licensed under the MIT License (MIT). | ||
|
||
import Test | ||
Test.@testset "Package H3DDetectorSystems" begin | ||
|
||
Test.@testset "Package H3DPolaris" begin | ||
end | ||
# test code goes here | ||
|
||
end # testset |