Skip to content

Commit 9a75198

Browse files
committed
added FPM file
added VSCode workspace file updated license
1 parent e13b29b commit 9a75198

File tree

4 files changed

+52
-2
lines changed

4 files changed

+52
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,7 @@
3131
build
3232
doc
3333
lib
34-
bin
34+
bin
35+
36+
# mac
37+
.DS_Store

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Fortran CSV Module
22
https://github.com/jacobwilliams/fortran-csv-module
33

4-
Copyright (c) 2017, Jacob Williams
4+
Copyright (c) 2017-2021, Jacob Williams
55
All rights reserved.
66

77
Redistribution and use in source and binary forms, with or without modification,

fortran-csv-module.code-workspace

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {
8+
"files.trimTrailingWhitespace": true,
9+
"editor.insertSpaces": true,
10+
"editor.tabSize": 4,
11+
"editor.trimAutoWhitespace": true
12+
}
13+
}

fpm.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name = "fortran-csv-module"
2+
version = "1.2.0"
3+
author = "Jacob Williams"
4+
maintainer = "Jacob Williams"
5+
copyright = "Copyright (c) 2017-2021, Jacob Williams"
6+
license = "BSD"
7+
description = "Read and Write CSV Files Using Modern Fortran"
8+
homepage = "https://github.com/jacobwilliams/fortran-csv-module"
9+
10+
[library]
11+
source-dir = "src"
12+
13+
[[ test ]]
14+
name = "csv_read_test"
15+
source-dir = "src/tests"
16+
main = "csv_read_test.f90"
17+
18+
[[ test ]]
19+
name = "csv_test"
20+
source-dir = "src/tests"
21+
main = "csv_test.f90"
22+
23+
[[ test ]]
24+
name = "csv_write_test"
25+
source-dir = "src/tests"
26+
main = "csv_write_test.f90"
27+
28+
[install]
29+
library = true
30+
31+
[build]
32+
auto-executables = false
33+
auto-examples = false
34+
auto-tests = false

0 commit comments

Comments
 (0)