diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..b067eddee4ee0afc7c0ea1304b68c5af07c3d5ca --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/Manifest.toml diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..8d48222a0929615cb01d6ce7300f9a2e503df5d9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Leif Andersson <leif.andersson@control.lth.se> + +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. diff --git a/Project.toml b/Project.toml index 872b2032bbd2422a41335029bc87ca1fcdb7fcff..03e86c147cee94ee095fc264d0bd8b4f6deb724a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,9 +1,13 @@ name = "ModJuliaTikz" -uuid = "22ae9137-b414-4881-b080-1e44453510eb" +uuid = "03fd23bd-cacd-4584-a80b-c389ae8a36ca" authors = ["Leif Andersson <leif.andersson@control.lth.se>"] -version = "0.1.0" +version = "1.0.0-DEV" -[deps] -Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" -Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" -ControlSystemsBase = "aaaaaaaa-a6ca-5380-bf3e-84a91bcd477e" +[compat] +julia = "1" + +[extras] +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["Test"] diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 0000000000000000000000000000000000000000..fe1e6bbc153428529413a3aa9db3aa4f3c9b8719 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,6 @@ +using ModJuliaTikz +using Test + +@testset "ModJuliaTikz.jl" begin + # Write your tests here. +end