From fc1ad78792f7ac625b9d503a66e8fbdfb909a4ea Mon Sep 17 00:00:00 2001
From: Leif Andersson <leif.andersson@control.lth.se>
Date: Tue, 12 Dec 2023 15:54:06 +0100
Subject: [PATCH] Recreated package.

---
 .gitignore       |  1 +
 LICENSE          | 21 +++++++++++++++++++++
 Project.toml     | 16 ++++++++++------
 test/runtests.jl |  6 ++++++
 4 files changed, 38 insertions(+), 6 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 LICENSE
 create mode 100644 test/runtests.jl

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b067edd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/Manifest.toml
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..8d48222
--- /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 872b203..03e86c1 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 0000000..fe1e6bb
--- /dev/null
+++ b/test/runtests.jl
@@ -0,0 +1,6 @@
+using ModJuliaTikz
+using Test
+
+@testset "ModJuliaTikz.jl" begin
+    # Write your tests here.
+end
-- 
GitLab