Skip to content

Commit f28963f

Browse files
author
Vincent Landau
committed
clean up, start on deps
1 parent 3e13a22 commit f28963f

File tree

5 files changed

+38
-203
lines changed

5 files changed

+38
-203
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dev.Dockerfile
22
run-dev.sh
3+
Manifest.toml

Manifest.toml

Lines changed: 0 additions & 202 deletions
This file was deleted.

Project.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,12 @@ name = "SpatialGraphs"
22
uuid = "c8109be6-b162-4503-8829-8b6b29b93f50"
33
authors = ["Vincent A. Landau <[email protected]>"]
44
version = "0.0.1"
5+
6+
[deps]
7+
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3"
8+
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
9+
SimpleWeightedGraphs = "47aef6b3-ad0c-573a-a1e2-d07658019622"
10+
11+
[compat]
12+
ArchGDAL = "0.6"
13+
julia = "1.6"

docs/make.jl

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Fixes GR warnings in Travis
2+
ENV["GKSwstype"] = "100"
3+
4+
using Documenter, SpatialGraphs
5+
6+
const formats = Any[
7+
Documenter.HTML(
8+
assets = [
9+
"assets/custom.css"
10+
],
11+
edit_link = :commit,
12+
),
13+
]
14+
15+
makedocs(
16+
format = formats,
17+
modules = [SpatialGraphs],
18+
authors = "Vincent A. Landau",
19+
sitename = "SpatialGraphs.jl",
20+
pages = ["About" => "index.md"],
21+
)
22+
23+
deploydocs(
24+
repo = "github.com/Circuitscape/SpatialGraphs.jl.git",
25+
devbranch = "main",
26+
devurl = "latest"
27+
)

src/SpatialGraphs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module SpatialGraphs
22

3-
greet() = print("Hello World!")
3+
using LightGraphs, SimpleWeightedGraphs, ArchGDAL
44

55
end # module

0 commit comments

Comments
 (0)