Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 20f166b

Browse files
committed
Files generated by PkgTemplates
1 parent c621a3b commit 20f166b

File tree

7 files changed

+63
-0
lines changed

7 files changed

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

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2019 Júlio Hoffimann
2+
3+
Permission to use, copy, modify, and/or distribute this software for any
4+
purpose with or without fee is hereby granted, provided that the above
5+
copyright notice and this permission notice appear in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "PointPatterns"
2+
uuid = "e61b41b6-3414-4803-863f-2b69057479eb"
3+
authors = ["Júlio Hoffimann"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "1.3"
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+
# PointPatterns
2+
3+
[![Build Status](https://travis-ci.com/juliohm/PointPatterns.jl.svg?branch=master)](https://travis-ci.com/juliohm/PointPatterns.jl)
4+
[![Codecov](https://codecov.io/gh/juliohm/PointPatterns.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/juliohm/PointPatterns.jl)

src/PointPatterns.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module PointPatterns
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 PointPatterns
2+
using Test
3+
4+
@testset "PointPatterns.jl" begin
5+
# Write your own tests here.
6+
end

0 commit comments

Comments
 (0)