Files generated by PkgTemplates
This commit is contained in:
parent
d62999f46b
commit
02281c49ee
7 changed files with 63 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.DS_Store
|
||||||
|
/Manifest.toml
|
||||||
|
/dev/
|
14
.travis.yml
Normal file
14
.travis.yml
Normal file
|
@ -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
|
19
LICENSE
Normal file
19
LICENSE
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
Copyright (c) 2020 Dimitri Lozeve <dimitri@lozeve.com>
|
||||||
|
|
||||||
|
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 = "GardenOptim"
|
||||||
|
uuid = "a9e1c8f2-2681-4423-bf67-1649e7f3cb09"
|
||||||
|
authors = ["Dimitri Lozeve <dimitri@lozeve.com>"]
|
||||||
|
version = "0.1.0"
|
||||||
|
|
||||||
|
[compat]
|
||||||
|
julia = "1"
|
||||||
|
|
||||||
|
[extras]
|
||||||
|
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
||||||
|
|
||||||
|
[targets]
|
||||||
|
test = ["Test"]
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# GardenOptim
|
||||||
|
|
||||||
|
[](https://travis-ci.com/dlozeve/GardenOptim.jl)
|
5
src/GardenOptim.jl
Normal file
5
src/GardenOptim.jl
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
module GardenOptim
|
||||||
|
|
||||||
|
greet() = print("Hello World!")
|
||||||
|
|
||||||
|
end # module
|
6
test/runtests.jl
Normal file
6
test/runtests.jl
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
using GardenOptim
|
||||||
|
using Test
|
||||||
|
|
||||||
|
@testset "GardenOptim.jl" begin
|
||||||
|
# Write your own tests here.
|
||||||
|
end
|
Loading…
Add table
Add a link
Reference in a new issue