Skip to content

Commit c6c909e

Browse files
committed
add template files
1 parent 644aa7f commit c6c909e

File tree

6 files changed

+90
-1
lines changed

6 files changed

+90
-1
lines changed

.appveyor.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Documentation: https://github.com/JuliaCI/Appveyor.jl
2+
environment:
3+
matrix:
4+
- julia_version: 1.0
5+
- julia_version: nightly
6+
platform:
7+
- x86
8+
- x64
9+
matrix:
10+
allow_failures:
11+
- julia_version: nightly
12+
branches:
13+
only:
14+
- master
15+
- /release-.*/
16+
notifications:
17+
- provider: Email
18+
on_build_success: false
19+
on_build_failure: false
20+
on_build_status_changed: false
21+
install:
22+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
23+
build_script:
24+
- echo "%JL_BUILD_SCRIPT%"
25+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
26+
test_script:
27+
- echo "%JL_TEST_SCRIPT%"
28+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
29+
on_success:
30+
- echo "%JL_CODECOV_SCRIPT%"
31+
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

.gitignore

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

.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.0
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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2019 Simon Danisch
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

Project.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name = "GeometryBasics"
2+
uuid = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
3+
authors = ["SimonDanisch <[email protected]>"]
4+
version = "0.1.0"
5+
6+
[deps]
7+
AbstractPlotting = "537997a7-5e4e-5d89-9595-2241ea00577e"
8+
GeometryTypes = "4d00f742-c7ba-57c2-abde-4428a4b178cb"
9+
10+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
11+
StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
12+
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
13+
14+
[extras]
15+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
16+
Query = "1a8c2f83-1ff3-5112-b086-8aa67b057ba1"
17+
18+
[targets]
19+
test = ["Test", "Query"]

test/REQUIRE

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)