-
Notifications
You must be signed in to change notification settings - Fork 1
/
fpm.toml
42 lines (34 loc) · 844 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
35
36
37
38
39
40
41
42
name = "codata"
version = "VERSION"
license = "MIT"
author = "Milan Skocic"
maintainer = "[email protected]"
copyright = "Copyright 2022-2024, Milan Skocic"
description = "CODATA physical constants."
categories =["Science"]
keywords = ["codata", "constants", "physics", "chemistry"]
homepage = "https://milanskocic.github.io/codata/index.html"
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = false
[install]
library = true
[dependencies]
stdlib="*"
[[example]]
name = "example_in_f"
main = "example.f90"
[[example]]
name = "example_in_c"
main = "example.c"
[[test]]
name = "tester"
main = "test_constants.f90"
[test.dependencies]
test-drive = {git="https://github.com/fortran-lang/test-drive", tag="v0.4.0"}