diff --git a/LICENSE b/LICENSE index 3288525..da2d51d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016-2018, Milan Curcic +Copyright (c) 2016-2020, functional-fortran contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index ed25c89..0668a42 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,14 @@ Start using functional-fortran in your code by including the module: use mod_functional ``` +This project also supports the Fortran Package Manager ([fpm](https://github.com/fortran-lang/fpm)). +Just add functional-fortran to your `fpm.toml`: +```toml +[dependencies] +[dependencies.functional] +git = "https://github.com/wavebitscientific/functional-fortran" +``` + ## Why functional-fortran? While not designed as a purely functional programming language, diff --git a/fpm.toml b/fpm.toml new file mode 100644 index 0000000..397e529 --- /dev/null +++ b/fpm.toml @@ -0,0 +1,9 @@ +name = "functional" +version = "0.5.0" +license = "BSD-3-Clause" +author = "Milan Curcic" +maintainer = "mcurcic@wavebitscientific.com" +copyright = "Copyright (c) 2016-2020, functional-fortran contributors" + +[library] +source-dir = "src/lib"