Skip to content

Commit

Permalink
minor revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Arlin committed Sep 7, 2023
1 parent 720c6ea commit 4abcfe6
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 31 deletions.
10 changes: 8 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
name = "AlgebraicDataMigrations"
uuid = "0c4ad18d-0c49-4bc2-90d5-5bca8f00d6ae"
license = "MIT"
authors = ["AlgebraicJulia Developer <[email protected]>"]
authors = ["Kevin Arlin <[email protected]",
"Evan Patterson <[email protected]>"]
version = "0.0.1"

[deps]
Catlab = "134e5e36-593f-5add-ad60-77f754baafbe"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
ACSets = "227ef7b5-1206-438b-ac65-934d6da304b8"
MLStyle = "d8e11817-5142-5d16-987a-aa16d5891078"

[compat]
Catlab = "^0.14"
ACSets = "0.2.5"
Catlab = "0.15"
julia = "1.10"
MLStyle = "0.4"
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[deps]
AlgebraicDataMigrations = "0c4ad18d-0c49-4bc2-90d5-5bca8f00d6ae"
Catlab = "134e5e36-593f-5add-ad60-77f754baafbe"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
13 changes: 0 additions & 13 deletions docs/literate/literate_example.jl

This file was deleted.

2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ makedocs(
pages=Any[
"AlgebraicDataMigrations.jl"=>"index.md",
"Examples"=>Any[
"generated/literate_example.md",
"generated/diagrams.md",
],
"Library Reference"=>"api.md",
]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
CurrentModule = AlgebraicDataMigrations
```

`AlgebraicDataMigrations.jl` is a Julia library for...
`AlgebraicDataMigrations.jl` is a Julia library for performing complex categorical data migrations.
14 changes: 5 additions & 9 deletions src/AlgebraicDataMigrations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
"""
module AlgebraicDataMigrations

export hello

using Catlab

""" hello(name::String)
Returns the string "Hello, <name>!" where `<name>` is replaced with the provided parameter
"""
hello(name::String) = string("Hello, ", name, "!")
using Reexport
include("Migrations.jl")
include("DiagrammaticPrograms.jl")

@reexport using .Migrations
@reexport using .DiagrammaticPrograms
end
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[deps]
AlgebraicDataMigrations = "0c4ad18d-0c49-4bc2-90d5-5bca8f00d6ae"
Catlab = "134e5e36-593f-5add-ad60-77f754baafbe"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1 change: 0 additions & 1 deletion test/core.jl

This file was deleted.

10 changes: 6 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Test
@testset "Diagrammatic Programs" begin
include("DiagrammaticPrograms.jl")
end
@testset "Migrations" begin
include("Migrations.jl")
end

using AlgebraicDataMigrations

@testset "Core" begin
include("core.jl")
end

0 comments on commit 4abcfe6

Please sign in to comment.