Skip to content

Commit

Permalink
Merge pull request #36 from jacobwilliams/35-tests
Browse files Browse the repository at this point in the history
moved test directory out of src
  • Loading branch information
jacobwilliams authored Oct 23, 2023
2 parents b110f61 + d074dab commit 1cacfc7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 21 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![fortran-csv-module](/media/logo.png)
![fortran-csv-module](media/logo.png)
============

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

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

### Documentation

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).


### Getting started
#### Get the code
```bash
Expand Down
1 change: 1 addition & 0 deletions fortran-csv-module.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
project: fortran-csv-module
project_dir: ./src
output_dir: ./doc
media_dir: ./media
project_github: https://github.com/jacobwilliams/fortran-csv-module
summary: Read and Write CSV Files Using Modern Fortran
author: Jacob Williams
Expand Down
25 changes: 5 additions & 20 deletions fpm.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name = "fortran-csv-module"
version = "1.3.1"
version = "1.5.0"
author = "Jacob Williams"
maintainer = "Jacob Williams"
copyright = "Copyright (c) 2017-2022, Jacob Williams"
copyright = "Copyright (c) 2017-2023, Jacob Williams"
license = "BSD-3"
description = "Read and Write CSV Files Using Modern Fortran"
homepage = "https://github.com/jacobwilliams/fortran-csv-module"
Expand All @@ -12,25 +12,10 @@ keywords = ["csv"]
[library]
source-dir = "src"

[[test]]
name = "csv_test"
source-dir = "src/tests"
main = "csv_test.f90"

[[test]]
name = "csv_test2"
source-dir = "src/tests"
main = "csv_test2.f90"

[[test]]
name = "csv_test3"
source-dir = "src/tests"
main = "csv_test3.f90"

[install]
library = true

[build]
auto-executables = false
auto-examples = false
auto-tests = false
auto-executables = true
auto-examples = true
auto-tests = true
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1cacfc7

Please sign in to comment.