-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathfpm.toml
More file actions
54 lines (49 loc) · 1.58 KB
/
Copy pathfpm.toml
File metadata and controls
54 lines (49 loc) · 1.58 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
name = "mctc-lib"
version = "0.5.2"
license = "Apache-2.0"
maintainer = ["@awvwgk"]
author = ["Sebastian Ehlert"]
copyright = "2020-2026 Sebastian Ehlert"
description = "Modular computation tool chain library"
keywords = ["computational-chemistry", "io"]
[dependencies]
jonquil.git = "https://github.com/toml-f/jonquil.git"
jonquil.tag = "v0.3.1"
toml-f.git = "https://github.com/toml-f/toml-f.git"
toml-f.tag = "v0.5.1"
[[executable]]
name = "mctc-convert"
[extra.ford]
project = "MCTC-library"
summary = "Modular computation tool chain library"
project_github = "https://github.com/grimme-lab/mctc-lib"
project_download = "https://github.com/grimme-lab/mctc-lib/releases"
author = "Grimme group, Bonn"
github = "https://github.com/grimme-lab"
src_dir = ["./src", "./app"]
output_dir = "./_docs"
exclude_dir = ["./test"]
page_dir = "./doc"
docmark = "<"
predocmark = ">"
source = true
graph = false
sort = "alpha"
print_creation_date = true
creation_date = "%Y-%m-%d %H:%M %z"
md_extensions = ["markdown.extensions.toc", "markdown.extensions.smarty"]
[extra.ford.extra_mods]
iso_fortran_env = "https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORTRAN_005fENV.html"
jonquil = "https://toml-f.github.io/jonquil/module/jonquil.html"
[extra.fortitude.check]
ignore = [
"C002", # interface without implicit none
"C003", # implicit none(external)
"C011", # no default in select case
"C061", # missing intent attribute
"C072", # assumed size character intent
"C121", # use without explicit only
"C122", # intrinsic missing for internal modules
"C181", # iostat not checked
]
line-length = 132