The long-term aim of this project is to be designed, built and supported by (and for) the geochemistry community. In the present, the majority of the work involves incorporating geological knowledge and frameworks into a practically useful core set of tools which can be later be expanded. As such, requests for features and bug reports are particularly valuable contributions, in addition to code and expanding the documentation. All individuals contributing to the project are expected to follow the Code of Conduct, which outlines community expectations and responsibilities.
Also, be sure to add your name or GitHub username to the contributors list.
Note: This project is currently in beta
, and as such there's much work to be done.
If you're new to Python, and want to implement a specific process, plot or framework as part of pyrolite
, you can submit a Feature Request.
Perhaps also check the Issues Board first to see if someone else has suggested something similar (or if something is in development), and comment there.
If you've tried to do something with pyrolite
, but it didn't work, and googling
error messages didn't help (or, if the error messages are full of
pyrolite.XX.xx
), you can submit a Bug Report.
Perhaps also check the Issues Board first to see if someone else is having the same issue, and comment there.
The documentation and examples for pyrolite
are gradually being developed, and any contributions or corrections would be greatly appreciated. Currently the examples are patchy, and any 'getting started' guides would be a helpful addition.
These pages serve multiple purposes:
-
A human-readable reference of the source code (compiled from docstrings).
-
A set of simple examples to demonstrate use and utility.
-
A place for developing extended examples
- Note: these examples could easily be distributed as educational resources showcasing the utility of programmatic approaches to geochemistry
Code contributions are always welcome, whether it be small modifications or entire
features. As the project gains momentum, check the Issues Board for outstanding issues, features under development. If you'd like to contribute, but you're not so
experienced with Python, look for good first issue
tags or email the maintainer
for suggestions.
To contribute code, the place to start will be forking the source for pyrolite
from GitHub. Once forked, clone a local copy and from the repository directory you can install a development (editable) copy via python setup.py develop
. To incorporate suggested
changes back to into the project, push your changes to your remote fork, and then submit a pull request onto pyrolite/develop or a relevant feature branch.
Notes:
-
See the Installation page for directions for installing extra dependencies for development, and the Development page for information on development environments and tests.
-
pyrolite
development roughly follows agitflow
workflow.pyrolite/master
is only used for releases, and large separable features should be build onfeature
branches offdevelop
. -
Contributions introducing new functions, classes or entire features should also include appropriate tests where possible (see Writing Tests, below).
-
pyrolite
uses Black for code formatting, and submissions which have passed throughBlack
are appreciated, although not critical.
There is currently a broad unit test suite for pyrolite
, which guards
against breaking changes and assures baseline functionality. pyrolite
uses continuous integration via Travis, where the full suite of tests are run for each commit and pull request, and test coverage output to Coveralls.
Adding or expanding tests is a helpful way to ensure pyrolite
does what is meant to, and does it reproducibly. The unit test suite one critical component of the package, and necessary to enable sufficient trust to use pyrolite
for scientific purposes.