-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfpm.toml
34 lines (28 loc) · 988 Bytes
/
fpm.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name = "fplot"
version = "1.8.0"
license = "GPL-3.0"
author = "Jason Christopherson"
maintainer = "Jason Christopherson"
copyright = "Copyright 2017-2025, Jason Christopherson"
description = "A Fortran library providing a convenient interface for plotting with Gnuplot."
homepage = "https://github.com/jchristopherson/fplot"
[library]
source-dir = "src"
[dependencies]
ferror = { git = "https://github.com/jchristopherson/ferror" }
collections = { git = "https://github.com/jchristopherson/collections" }
fstring = { git = "https://github.com/jchristopherson/fstring" }
geompack = { git = "https://github.com/jchristopherson/geompack" }
forcolormap = { git = "https://github.com/vmagnin/forcolormap" }
[dev-dependencies]
fortran_test_helper = { git = "https://github.com/jchristopherson/fortran_test_helper" }
[install]
library = true
[build]
auto-executables = false
auto-examples = false
auto-tests = false
[[test]]
name = "fplot_test"
source-dir = "test"
main = "fplot_test.f90"