-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49828b2
commit 4ea7e3b
Showing
11 changed files
with
58 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
name = "Solus" | ||
uuid = "16b9c28e-565c-11e9-13a9-53e2645fa95d" | ||
authors = ["Simon Byrne <simonbyrne@gmail.com>"] | ||
name = "CES" | ||
uuid = "57e54526-abb8-4cd3-a48f-48a815226fdb" | ||
authors = ["Charles_Kawczynski <kawczynski.charles@gmail.com>"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" | ||
ConfParser = "88353bc9-fd38-507d-a820-d3b43837d6b9" | ||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" | ||
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
EllipsisNotation = "da5c29d0-fa7d-589e-88eb-ea29b0a81949" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
NPZ = "15e1cf62-19b3-5cfa-8e77-841668bca605" | ||
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a" | ||
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0" | ||
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee" | ||
ScikitLearn = "3646fa90-6ef7-5e7e-9f22-8aca16db6324" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
|
||
[extras] | ||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" | ||
NPZ = "15e1cf62-19b3-5cfa-8e77-841668bca605" | ||
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["DifferentialEquations", "NPZ", "Parameters", "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,5 +1,12 @@ | ||
# Solus.jl | ||
# CES.jl | ||
|
||
[![Travis Build Status](https://travis-ci.org/climate-machine/Solus.jl.svg?branch=master)](https://travis-ci.org/climate-machine/Solus.jl) | ||
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/uslnruyhehva7bbv/branch/master?svg=true)](https://ci.appveyor.com/project/climate-machine/solus-jl/branch/master) | ||
| **Build Status** | | ||
|:------------------------------------------------------------------------------| | ||
| [![appveyor][appveyor-img]][appveyor-url] [![travis][travis-img]][travis-url] | | ||
|
||
[travis-img]: https://travis-ci.org/climate-machine/CES.jl.svg?branch=master | ||
[travis-url]: https://travis-ci.org/climate-machine/CES.jl | ||
|
||
[appveyor-img]: https://ci.appveyor.com/api/projects/status/uslnruyhehva7bbv/branch/master?svg=true | ||
[appveyor-url]: https://ci.appveyor.com/project/climate-machine/CES.jl/branch/master | ||
|
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,28 @@ | ||
Base.HOME_PROJECT[] = abspath(Base.HOME_PROJECT[]) # JuliaLang/julia/pull/28625 | ||
|
||
using CES, Documenter | ||
|
||
makedocs( | ||
sitename = "CES.jl", | ||
doctest = false, | ||
strict = false, | ||
format = Documenter.HTML( | ||
prettyurls = get(ENV, "CI", nothing) == "true", | ||
mathengine = MathJax(Dict( | ||
:TeX => Dict( | ||
:equationNumbers => Dict(:autoNumber => "AMS"), | ||
:Macros => Dict() | ||
) | ||
)) | ||
), | ||
clean = false, | ||
modules = [Documenter, CES], | ||
pages = Any[ | ||
"Home" => "index.md", | ||
], | ||
) | ||
|
||
deploydocs( | ||
repo = "github.com/climate-machine/CES.jl.git", | ||
target = "build", | ||
) |
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,4 +1,4 @@ | ||
module Solus | ||
module CES | ||
|
||
using Distributions, Statistics, LinearAlgebra, DocStringExtensions | ||
|
||
|
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,5 +1,5 @@ | ||
using Test | ||
using Solus | ||
using CES | ||
ENV["JULIA_LOG_LEVEL"] = "WARN" | ||
|
||
include("neki.jl") | ||
|