From 02281c49eeadaefa1919b60391dc27403404c6d0 Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Tue, 18 Feb 2020 19:00:36 +0100 Subject: [PATCH] Files generated by PkgTemplates --- .gitignore | 3 +++ .travis.yml | 14 ++++++++++++++ LICENSE | 19 +++++++++++++++++++ Project.toml | 13 +++++++++++++ README.md | 3 +++ src/GardenOptim.jl | 5 +++++ test/runtests.jl | 6 ++++++ 7 files changed, 63 insertions(+) create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 LICENSE create mode 100644 Project.toml create mode 100644 README.md create mode 100644 src/GardenOptim.jl create mode 100644 test/runtests.jl diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..145cb1a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +/Manifest.toml +/dev/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e514d7b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +# Documentation: http://docs.travis-ci.com/user/languages/julia/ +language: julia +os: + - linux + - osx +julia: + - 1.0 + - nightly +notifications: + email: false +jobs: + allow_failures: + - julia: nightly + fast_finish: true diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..70a3155 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Dimitri Lozeve + +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. diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..7049974 --- /dev/null +++ b/Project.toml @@ -0,0 +1,13 @@ +name = "GardenOptim" +uuid = "a9e1c8f2-2681-4423-bf67-1649e7f3cb09" +authors = ["Dimitri Lozeve "] +version = "0.1.0" + +[compat] +julia = "1" + +[extras] +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["Test"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..2aee147 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# GardenOptim + +[![Build Status](https://travis-ci.com/dlozeve/GardenOptim.jl.svg?branch=master)](https://travis-ci.com/dlozeve/GardenOptim.jl) diff --git a/src/GardenOptim.jl b/src/GardenOptim.jl new file mode 100644 index 0000000..7f8a980 --- /dev/null +++ b/src/GardenOptim.jl @@ -0,0 +1,5 @@ +module GardenOptim + +greet() = print("Hello World!") + +end # module diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 0000000..dccfb60 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,6 @@ +using GardenOptim +using Test + +@testset "GardenOptim.jl" begin + # Write your own tests here. +end