Skip to content

Commit 1cacfc7

Browse files
authoredOct 23, 2023
Merge pull request #36 from jacobwilliams/35-tests
moved test directory out of src
2 parents b110f61 + d074dab commit 1cacfc7

6 files changed

+12
-21
lines changed
 

‎README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![fortran-csv-module](/media/logo.png)
1+
![fortran-csv-module](media/logo.png)
22
============
33

44
[![GitHub release](https://img.shields.io/github/release/jacobwilliams/fortran-csv-module.svg)](https://github.com/jacobwilliams/fortran-csv-module/releases/latest)
@@ -14,6 +14,11 @@ A modern Fortran library for reading and writing CSV (comma-separated value) fil
1414

1515
[![GitHub release](https://img.shields.io/github/release/jacobwilliams/fortran-csv-module.svg?style=plastic)](https://github.com/jacobwilliams/fortran-csv-module/releases/latest)
1616

17+
### Documentation
18+
19+
The latest API documentation for the `master` branch can be found [here](https://jacobwilliams.github.io/fortran-csv-module/). This was generated from the source code using [FORD](https://github.com/Fortran-FOSS-Programmers/ford).
20+
21+
1722
### Getting started
1823
#### Get the code
1924
```bash

‎fortran-csv-module.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
project: fortran-csv-module
22
project_dir: ./src
33
output_dir: ./doc
4+
media_dir: ./media
45
project_github: https://github.com/jacobwilliams/fortran-csv-module
56
summary: Read and Write CSV Files Using Modern Fortran
67
author: Jacob Williams

‎fpm.toml

+5-20
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name = "fortran-csv-module"
2-
version = "1.3.1"
2+
version = "1.5.0"
33
author = "Jacob Williams"
44
maintainer = "Jacob Williams"
5-
copyright = "Copyright (c) 2017-2022, Jacob Williams"
5+
copyright = "Copyright (c) 2017-2023, Jacob Williams"
66
license = "BSD-3"
77
description = "Read and Write CSV Files Using Modern Fortran"
88
homepage = "https://github.com/jacobwilliams/fortran-csv-module"
@@ -12,25 +12,10 @@ keywords = ["csv"]
1212
[library]
1313
source-dir = "src"
1414

15-
[[test]]
16-
name = "csv_test"
17-
source-dir = "src/tests"
18-
main = "csv_test.f90"
19-
20-
[[test]]
21-
name = "csv_test2"
22-
source-dir = "src/tests"
23-
main = "csv_test2.f90"
24-
25-
[[test]]
26-
name = "csv_test3"
27-
source-dir = "src/tests"
28-
main = "csv_test3.f90"
29-
3015
[install]
3116
library = true
3217

3318
[build]
34-
auto-executables = false
35-
auto-examples = false
36-
auto-tests = false
19+
auto-executables = true
20+
auto-examples = true
21+
auto-tests = true
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.