-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfpm.toml
More file actions
42 lines (35 loc) · 1.11 KB
/
fpm.toml
File metadata and controls
42 lines (35 loc) · 1.11 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
name = "FJsample"
version = "0.2.0"
license = "MIT"
author = "Ryan Bignell"
maintainer = "ryan07bignell+github@gmail.com"
copyright = "Copyright 2025, Ryan Bignell"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = true
[install]
library = true
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
[preprocess]
[preprocess.cpp]
suffixes = ["F90"]
#macros=['LOCALITYSUPPORT=1'] # UNCOMMENT THIS TO ENABLE IT
[extra.fortitude.check]
ignore = [
"MOD011", # allows (/ /)
"MOD021", # allows .gt.
# "C132", # allows default public accessiblility
# "E001", # ignores syntax errors - useful as pre-processor support is tough
"S241", # allows strings with single quotes,
# "C011", # allows missing default in select case statements
]
preview = true
line-length = 132 # 132 is apparently an implicit standard in compilers?
# not sure this is actually working here...
[extra.check.per-file-ignores]
"c_wrapper/FJsample_c.f90" = ["C003"] # f2py doesn't know how to handle implicit none(external)