Skip to content

Commit afd7c79

Browse files
committed
Files generated by PkgTemplates
1 parent df13fcb commit afd7c79

File tree

7 files changed

+72
-0
lines changed

7 files changed

+72
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.jl.*.cov
2+
*.jl.cov
3+
*.jl.mem
4+
.DS_Store
5+
/Manifest.toml
6+
/dev/

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 1.0
8+
- 1.1
9+
- nightly
10+
matrix:
11+
allow_failures:
12+
- julia: nightly
13+
fast_finish: true
14+
notifications:
15+
email: false
16+
after_success:
17+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The Reproject.jl package is licensed under the MIT "Expat" License:
2+
3+
> Copyright (c) 2019 Mosè Giordano
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 = "Reproject"
2+
uuid = "d1dcc2e6-806e-11e9-2897-3f99785db2ae"
3+
authors = ["Mosè Giordano"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "^1.0.0"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Reproject
2+
3+
[![Build Status](https://travis-ci.com/giordano/Reproject.jl.svg?branch=master)](https://travis-ci.com/giordano/Reproject.jl)
4+
[![Coveralls](https://coveralls.io/repos/github/giordano/Reproject.jl/badge.svg?branch=master)](https://coveralls.io/github/giordano/Reproject.jl?branch=master)

src/Reproject.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module Reproject
2+
3+
greet() = print("Hello World!")
4+
5+
end # module

test/runtests.jl

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

0 commit comments

Comments
 (0)