Skip to content

Commit 4ce750a

Browse files
committed
initial
1 parent d410686 commit 4ce750a

75 files changed

Lines changed: 337304 additions & 3 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
local/*
2+
docs/build/*
3+
.vscode/*
4+
data/A123456.json
5+
data/b000290.txt

.travis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: julia
2+
3+
os:
4+
- linux
5+
- osx
6+
7+
julia:
8+
- 1.1
9+
- nightly
10+
11+
matrix:
12+
allow_failures:
13+
- julia: nightly
14+
15+
notifications:
16+
email: true
17+
18+
env:
19+
global:
20+
- DOCUMENTER_DEBUG=true
21+
22+
script:
23+
- julia --color=yes -e 'using Pkg; Pkg.build()'
24+
- julia --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'
25+
26+
jobs:
27+
include:
28+
- stage: "Documentation"
29+
julia: 1.1
30+
os: linux
31+
script:
32+
- julia --project=docs/ -e 'import Pkg; Pkg.add("Documenter")'
33+
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
34+
- julia --project=docs/ docs/make.jl
35+
after_success: skip

LICENSE renamed to LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 OpenLibMathSeq
3+
Copyright (c) 2019 OpenLibMathSeq / Peter Luschny
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)