-
Notifications
You must be signed in to change notification settings - Fork 85
Switch to markdown #190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Switch to markdown #190
Changes from 9 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6f123de
update gitignore
fdiblen 876fceb
convert changelog to markdown and use keepachangelog
fdiblen b59526b
update code of conduct
fdiblen 73206d2
update the contributing guide
fdiblen fa93dad
update the links in contributing guide
fdiblen 7d345c5
convert readme to markdown
fdiblen 49188f4
update the README
fdiblen b7cabb2
fix urls generated by cookiecutter
fdiblen 00d58e3
reorganize the badges
fdiblen 8a83b79
remove leftovers
fdiblen cc2bbf1
Update {{cookiecutter.project_name}}/CHANGELOG.md
fdiblen d0e08e1
Update {{cookiecutter.project_name}}/CODE_OF_CONDUCT.md
fdiblen f3f0d9f
Update {{cookiecutter.project_name}}/README.md
fdiblen 849c366
fix credits
fdiblen d551135
fix badge rows
fdiblen f30bd7e
Merge branch '162-use-markdown' of github.com:NLeSC/python-template i…
fdiblen 22bf616
move cii badge to 5th row
fdiblen 05beff7
use howfairis instead of coverall
fdiblen 5aa6e58
change fair-software domain name
fdiblen a0c48d2
update markdown link checker config
fdiblen 09cca48
update old links pointing to rst files
fdiblen 6612caf
remove uncessary links from the contributing guides
fdiblen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,3 +20,9 @@ docs/apidocs | |
|
|
||
| # Mac | ||
| .DS_Store | ||
|
|
||
| # virtual environments | ||
| env | ||
| env3 | ||
| venv | ||
| venv3 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Changelog | ||
| All notable changes to this project will be documented in this file. | ||
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## [Unreleased] | ||
|
|
||
| ## [0.0.1] - 2021-12-31 | ||
|
|
||
| ### Added | ||
|
|
||
| ### Removed | ||
|
|
||
| ### Changed | ||
|
|
||
| [Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD | ||
| [0.0.1]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.0.1 | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| # Contributing guidelines | ||
|
|
||
| We welcome any kind of contribution to our software, from simple comment or question to a full fledged [pull request](https://help.github.com/articles/about-pull-requests/). Please read and follow our [Code of Conduct](CODE_OF_CONDUCT.md). | ||
|
|
||
| A contribution can be one of the following cases: | ||
|
|
||
| 1. you have a question; | ||
| 1. you think you may have found a bug (including unexpected behavior); | ||
| 1. you want to make some kind of change to the code base (e.g. to fix a bug, to add a new feature, to update documentation); | ||
| 1. you want to make a new release of the code base. | ||
|
|
||
| The sections below outline the steps in each case. | ||
|
|
||
| ## You have a question | ||
|
|
||
| 1. use the search functionality [here]({{cookiecutter.repository}}/issues) to see if someone already filed the same issue; | ||
| 2. if your issue search did not yield any relevant results, make a new issue; | ||
| 3. apply the "Question" label; apply other labels when relevant. | ||
|
|
||
| ## You think you may have found a bug | ||
|
|
||
| 1. use the search functionality [here]({{cookiecutter.repository}}/issues) to see if someone already filed the same issue; | ||
| 1. if your issue search did not yield any relevant results, make a new issue, making sure to provide enough information to the rest of the community to understand the cause and context of the problem. Depending on the issue, you may want to include: | ||
| - the [SHA hashcode](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) of the commit that is causing your problem; | ||
| - some identifying information (name and version number) for dependencies you're using; | ||
| - information about the operating system; | ||
| 1. apply relevant labels to the newly created issue. | ||
|
|
||
| ## You want to make some kind of change to the code base | ||
|
|
||
| 1. (**important**) announce your plan to the rest of the community *before you start working*. This announcement should be in the form of a (new) issue; | ||
| 1. (**important**) wait until some kind of consensus is reached about your idea being a good idea; | ||
| 1. if needed, fork the repository to your own Github profile and create your own feature branch off of the latest master commit. While working on your feature branch, make sure to stay up to date with the master branch by pulling in changes, possibly from the 'upstream' repository (follow the instructions [here](https://help.github.com/articles/configuring-a-remote-for-a-fork/) and [here](https://help.github.com/articles/syncing-a-fork/)); | ||
| 1. make sure the existing tests still work by running ``pytest``; | ||
| 1. add your own tests (if necessary); | ||
| 1. update or expand the documentation; | ||
| 1. update the `CHANGELOG.md` file with change; | ||
| 1. [push](http://rogerdudler.github.io/git-guide/>) your feature branch to (your fork of) the {{ cookiecutter.package_name }} repository on GitHub; | ||
| 1. create the pull request, e.g. following the instructions [here](https://help.github.com/articles/creating-a-pull-request/). | ||
|
|
||
| In case you feel like you've made a valuable contribution, but you don't know how to write or run tests for it, or how to generate the documentation: don't let this discourage you from making the pull request; we can help you! Just go ahead and submit the pull request, but keep in mind that you might be asked to append additional commits to your pull request. |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| ## Badges | ||
|
|
||
| (Customize these badges with your own links, and check https://shields.io/ or https://badgen.net/ to see which other badges are available.) | ||
|
|
||
| | fair-software.nl recommendations | | | ||
| | :-- | :-- | | ||
| | (1/5) code repository | []({{cookiecutter.repository}}) | | ||
| | (2/5) license | []({{cookiecutter.repository}}) | | ||
| | (3/5) community registry | [](https://www.research-software.nl/software/{{cookiecutter.project_name}}) | | ||
| | PyPI Badge | [](https://pypi.python.org/project/{{cookiecutter.project_name}}/) | | ||
|
jspaaks marked this conversation as resolved.
Outdated
|
||
| | (4/5) citation | [](https://doi.org/<replace-with-created-DOI>) | | ||
| | (5/5) checklist | | | ||
| | overall | [](https://fair-software.eu) | | ||
| | CII Best Practices Badge | [](https://bestpractices.coreinfrastructure.org/projects/<replace-with-created-project-identifier>) | | ||
|
jspaaks marked this conversation as resolved.
Outdated
|
||
| | **Other best practices** | | | ||
| | Sonarcloud quality badge | [](https://sonarcloud.io/dashboard?id={{cookiecutter.github_organization}}_{{cookiecutter.project_name}}) | | ||
| | Sonarcloud coverage badge | [](https://sonarcloud.io/dashboard?id={{cookiecutter.github_organization}}_{{cookiecutter.project_name}}) | | ||
| | **GitHub Actions** | | | ||
| | Python Build | []({{cookiecutter.repository}}/actions?query=workflow%3A%22Python%22) | | ||
| | PyPI Publish | []({{cookiecutter.repository}}/actions?query=workflow%3A%22PyPI%22) | | ||
| | Metadata consistency | []({{cookiecutter.repository}}/actions?query=workflow%3A%22cffconvert%22) | | ||
|
|
||
| ## How to use {{ cookiecutter.package_name }} | ||
|
|
||
| {{ cookiecutter.package_short_description }} | ||
|
|
||
|
|
||
|
fdiblen marked this conversation as resolved.
Outdated
|
||
| The project setup is documented in [project_setup.md](project_setup.md). Feel free to remove this document (and/or the link to this document) if you don't need it. | ||
|
|
||
| ## Installation | ||
|
|
||
| To install {{ cookiecutter.package_name }} from GitHub repository, do: | ||
|
|
||
| ```console | ||
| git clone {{ cookiecutter.repository }}.git | ||
| cd {{ cookiecutter.project_name }} | ||
| python3 -m pip install . | ||
| ``` | ||
|
|
||
| ## Documentation | ||
|
|
||
| .. _README: | ||
|
jspaaks marked this conversation as resolved.
Outdated
|
||
|
|
||
| Include a link to your project's full documentation here. | ||
|
|
||
| ## Contributing | ||
|
|
||
| If you want to contribute to the development of {{ cookiecutter.project_name }}, | ||
| have a look at the [contribution guidelines](CONTRIBUTING.md). | ||
|
|
||
|
|
||
| Credits | ||
| ******* | ||
|
|
||
|
jspaaks marked this conversation as resolved.
Outdated
|
||
| This package was created with `Cookiecutter <https://github.com/audreyr/cookiecutter>`_ and the `NLeSC/python-template <https://github.com/NLeSC/python-template>`_. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.