Skip to content

Commit

Permalink
Updated docs and README with alternatives
Browse files Browse the repository at this point in the history
  • Loading branch information
anchal-physics committed Oct 15, 2024
1 parent 4ef1d12 commit 11bfa8f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ A pure [Julia](https://julialang.org/) implementation of Python
The code is [hosted on GitHub](https://github.com/anchal-physics/FortranNamelistParser.jl),
with some continuous integration services to test its validity.

This repository is forked from original [repo](https://github.com/singularitti/FortranNamelistParser.jl) from [@singularitti](https://github.com/singularitti). [@singularitti](https://github.com/singularitti) is the major author of this package and the owner and mainter of this repository [@anchal-physics](https://github.com/anchal-physics) is only taking care of julia registration and minimal maintainence.
This repository was forked from [singularitti/FortranNamelistParser.jl](https://github.com/singularitti/Fortran90Namelists.jl/commit/d7eaefe084875d3de11b4fd0fd7e568fbbdd8b60) and new functions to read namelist files into dictionary and write dictiory into Fortran namelist files have been added. Some minor fixes in parsing have also been done to ensure all sample namelist files are read correctly.

You are very welcome to contribute and/or take over the ownership of this project.
If your usecase namelist file is not being read/written correctly, please open a issue and attach a namelist file with code to reproduce the error. Alternatively, you are more than welcome to contribute directly to the repo to get your usecase supported.

## Installation

Expand Down Expand Up @@ -67,3 +67,9 @@ Contributions are very welcome, as are feature requests and suggestions. Please
guidelines that should be followed when opening pull requests and contributing code.

[issues-url]: https://github.com/anchal-physics/FortranNamelistParser.jl/issues

## Alternatives

* [FortranNamelists.jl](https://gitlab.com/seamsay/FortranNamelists.jl): Another pure Julia package for reading (and writing) Fortran namelist files. This package is another take at the parser with different features and is similar to Fortran in use. Please check if this package meets your needs better.
* [PyFortran90Namelists](https://github.com/singularitti/PyFortran90Namelists.jl): A package which uses `PyCall` to call the python librabry `f90nml` to perform the parsing.
* [Fortran90Namelists](https://github.com/singularitti/Fortran90Namelists.jl): A work in progress package which would probably supersede this package in future when registered.
13 changes: 10 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ Documentation for [FortranNamelistParser](https://github.com/anchal-physics/Fort
See the [Index](@ref main-index) for the complete list of documented functions
and types.

This repository is forked from original [repo](https://github.com/singularitti/Fortran90Namelists.jl) from [@singularitti](https://github.com/singularitti). [@singularitti](https://github.com/singularitti) is the major author of this package and the owner and mainter of this repository [@anchal-physics](https://github.com/anchal-physics) is only taking care of julia registration and minimal maintainence.
This repository was forked from [singularitti/FortranNamelistParser.jl](https://github.com/singularitti/Fortran90Namelists.jl/commit/d7eaefe084875d3de11b4fd0fd7e568fbbdd8b60) and new functions to read namelist files into dictionary and write dictiory into Fortran namelist files have been added. Some minor fixes in parsing have also been done to ensure all sample namelist files are read correctly.

You are very welcome to contribute.
If your usecase namelist file is not being read/written correctly, please open a issue and attach a namelist file with code to reproduce the error. Alternatively, you are more than welcome to contribute directly to the repo to get your usecase supported.

## Installation

## Installation
Â
The package can be installed with the Julia package manager.
From the Julia REPL, type `]` to enter the Pkg REPL mode and run:

Expand Down Expand Up @@ -68,3 +69,9 @@ Pages = ["api.md"]
```@index
Pages = ["api.md"]
```

## Alternatives

* [FortranNamelists.jl](https://gitlab.com/seamsay/FortranNamelists.jl): Another pure Julia package for reading (and writing) Fortran namelist files. This package is another take at the parser with different features and is similar to Fortran in use. Please check if this package meets your needs better.
* [PyFortran90Namelists](https://github.com/singularitti/PyFortran90Namelists.jl): A package which uses `PyCall` to call the python librabry `f90nml` to perform the parsing.
* [Fortran90Namelists](https://github.com/singularitti/Fortran90Namelists.jl): A work in progress package which would probably supersede this package in future when registered.

2 comments on commit 11bfa8f

@anchal-physics
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/117266

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 11bfa8fef52e7d9b310f4beb6717820e9cf5fc5d
git push origin v0.1.0

Please sign in to comment.