diff --git a/package/.github/CONTRIBUTING.md b/package/.github/CONTRIBUTING.md new file mode 100644 index 00000000000..8b600597796 --- /dev/null +++ b/package/.github/CONTRIBUTING.md @@ -0,0 +1,15 @@ +## Contributing to MDAnalysis + +Thanks for contributing to MDAnalysis! + +#### Reporting issues + +If you've found a defect with MDAnalysis we'd love to know so we can fix it. Please follow the Issue template so we can quickly diagnose the problem, in particular the piece of code that causes the problem. + +If your issue isn't a defect with the code and instead you require help using MDAnalysis, drop by the [discussion board](http://help.mdanalysis.org). + +#### Contributing code + +If you're contributing code, please check out the [Style guide](https://github.com/MDAnalysis/mdanalysis/wiki/Style-Guide). + +MDAnalysis devs are most easily reached through the [development board](http://developers.mdanalysis.org). diff --git a/package/.github/ISSUE_TEMPLATE.md b/package/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000000..4bd5c871bc2 --- /dev/null +++ b/package/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,19 @@ +### Expected behaviour + + +### Actual behaviour + + +### Code to reproduce the behaviour + +``` python +import MDAnalysis as mda + +u = mda.Universe(top, trj) + +.... + +``` + +### Currently version of MDAnalysis: +(run 'python -c "import MDAnalysis as mda; print(mda.__version__)"') diff --git a/package/.github/PULL_REQUEST_TEMPLATE.md b/package/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000000..f12d113f4f8 --- /dev/null +++ b/package/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,12 @@ +Fixes # + +Changes made in this Pull Request: + - + + +PR Checklist +------------ + - [ ] Tests? + - [ ] Docs? + - [ ] CHANGELOG updated? + - [ ] Issue raised/referenced?