Repository where I mostly put random python scripts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.4 KiB

  1. ## Dependencies
  2. ### Matplotlib
  3. ```bash
  4. python -m pip install -U pip
  5. python -m pip install -U matplotlib
  6. ```
  7. ## Contributing
  8. Modified from [Atom's CONTRIBUTING.md](https://github.com/atom/atom/blob/master/CONTRIBUTING.md#how-can-i-contribute)
  9. First off, thanks for taking the time to contribute!
  10. The following is a set of guidelines for contributing. These are mostly
  11. guidelines, not rules. Use your best judgment, and feel free to propose changes
  12. to this document in a pull request.
  13. ### How Can I Contribute?
  14. #### Basic Guide
  15. 1. Fork the repository
  16. 2. `git clone` the repository to your local working space
  17. 3. Make changes
  18. 4. `git status` to check your untracked changes, `git add` added/modified files
  19. 5. `git commit` your changes, include a message if you want.
  20. 6. `git push` to your forked repository
  21. 7. Open a pull request in GitHub.
  22. #### Reporting Bugs
  23. How Do I Submit A (Good) Bug Report?
  24. Bugs are tracked as GitHub issues. After you've determined which repository your bug is related to, create an issue on that repository and provide the following information by filling in the template.
  25. Explain the problem and include additional details to help maintainers reproduce the problem:
  26. - Use a **clear and descriptive title** for the issue to identify the problem.
  27. - **Describe the exact steps** which reproduce the problem in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
  28. - **Provide specific examples** to demonstrate the steps. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use Markdown code blocks.
  29. - **Describe the behavior** you observed after following the steps and point out what exactly is the problem with that behavior.
  30. - Explain which **behavior you expected** to see instead and why.
  31. ### Suggesting Enhancements
  32. #### How Do I Submit A (Good) Enhancement Suggestion?
  33. Enhancement suggestions are tracked as GitHub issues. Create an issue on the repository and provide the following information:
  34. - Use a **clear and descriptive title** for the issue to identify the suggestion.
  35. - **Provide specific examples** to demonstrate the steps. Include copy/pasteable snippets which you use in those examples, as Markdown code blocks.
  36. - **Describe the current behavior** and explain which behavior you expected to see instead and why.