Skip to content

Commit

Permalink
Copy mBuild's CONTRIBUTING.md to contributing.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
umesh-timalsina committed Feb 27, 2020
1 parent d83c13e commit a862ff0
Showing 1 changed file with 55 additions and 2 deletions.
57 changes: 55 additions & 2 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,56 @@
Contributing
------------
plz help
============
Contributions are welcomed via `pull requests on GitHub <https://github.com/mattwthompson/topology/pulls>`_. Developers and/or
users will review requested changes and make comments. The rest of this file will serve as a set of general guidelines
for contributors.

Features
--------
Implement functionality in a general and flexible fashion
*********************************************************
gmso is designed to be general and flexible, not limited to single chemistries, file formats, simulation engines, or
simulation methods. Additions to core features should attempt to provide something that is applicable to a variety of
use-cases and not targeted at only the focus area of your research. However, some specific features targeted toward
a limited use case may be appropriate. Speak to the developers before writing your code and they will help you make design
choices that allow flexibility.

Version control
---------------

We currently use the "standard" Pull Request model. Contributions should be implemented on feature branches of forks.
Please try to keep the `master` branch of your fork up-to-date with the `master` branch of the main repository.

Propose a single set of related changes
****************************************

Small changes are preferred over large changes. A major contribution can often be broken down into smaller PRs. Large PRs that
affect many parts of the codebase can be harder to review and are more likely to cause merge conflicts.

Source code
-----------
Use a consistent style
*************************
It is important to have a consistent style throughout the source code. The following criteria are desired:

* Lines wrapped to 80 characters
* Lines are indented with spaces
* Lines do not end with whitespace
* For other details, refer to `PEP8 <https://www.python.org/dev/peps/pep-0008>`_

To help with the above, there are tools such as `flake8 <https://pypi.org/project/flake8/>`_ and `Black <https://github.com/ambv/black>`_.

Document code with comments
****************************
All public-facing functions should have docstrings using the numpy style. This includes concise paragraph-style description
of what the class or function does, relevant limitations and known issues, and descriptions of arguments. Internal functions
can have simple one-liner docstrings.


Tests
-----
Write unit tests
****************
All new functionality in gmso should be tested with automatic unit tests that execute in a few seconds. These tests
should attempt to cover all options that the user can select. All or most of the added lines of source code should be
covered by unit test(s). We currently use `pytest <https://docs.pytest.org/en/latest/>`_, which can be executed simply by calling
`pytest` from the root directory of the package.

0 comments on commit a862ff0

Please sign in to comment.