diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..30ecab8 --- /dev/null +++ b/Project.toml @@ -0,0 +1,17 @@ +name = "AbaqusReader" +uuid = "bc6b9049-e460-56d6-94b4-a597b2c0390d" +authors = ["Jukka Aho "] +version = "0.2.4" + +[deps] +Nullables = "4d1e1d77-625e-5b40-9113-a560ec7a8ecd" + +[compat] +julia = "1" +Nullables = "1" + +[extras] +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["Test"] diff --git a/REQUIRE b/REQUIRE deleted file mode 100644 index 7e877ff..0000000 --- a/REQUIRE +++ /dev/null @@ -1,2 +0,0 @@ -julia 0.7 -Nullables diff --git a/test/REQUIRE b/test/REQUIRE deleted file mode 100644 index 0f2f954..0000000 --- a/test/REQUIRE +++ /dev/null @@ -1 +0,0 @@ -Documenter diff --git a/test/runtests.jl b/test/runtests.jl index acec753..d6552a2 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -4,8 +4,6 @@ using AbaqusReader using Test -include("../docs/make.jl") - @testset "AbaqusReader.jl" begin @testset "test_parse_mesh" begin include("test_parse_mesh.jl") end @testset "test_parse_model" begin include("test_parse_model.jl") end @@ -14,5 +12,3 @@ include("../docs/make.jl") @testset "test_parse_t2d2" begin include("test_parse_t2d2.jl") end @testset "test_parse_beams" begin include("test_parse_beams.jl") end end - -include("../docs/deploy.jl")