https://github.com/romerogroup/pyprocar
Raw File
Tip revision: e3db646e7a897cf9da4b2762ec3c03de85654bc5 authored by Pedram Tavadze on 18 August 2023, 12:49:54 UTC
Merge branch 'dev' of https://github.com/romerogroup/pyprocar into dev
Tip revision: e3db646
CONTRIBUTING.rst
Contributing
==================================

We absolutely welcome contributions and we hope that this guide will
facilitate an understanding of the PyProcar code repository. It is
important to note that the PyProcar software package is maintained on a
volunteer basis and thus we need to foster a community that can support
user questions and develop new features to make this software a useful
tool for all users.

This page is dedicated to outline where you should start with your
question, concern, feature request, or desire to contribute.

Being Respectful
-----------------------------------

Please demonstrate empathy and kindness toward other people, other software,
and the communities who have worked diligently to build (un-)related tools.

Please do not talk down in Pull Requests, Issues, or otherwise in a way that
portrays other people or their works in a negative light.

Cloning the Source Repository
-----------------------------------

You can clone the source repository from
`<https://github.com/romerogroup/pyprocar>`_ and install the latest version by
running:

.. code:: bash

   git clone https://github.com/romerogroup/pyprocar.git
   cd pyprocar
   
Next, create a virtual envrionment and activate it. 
.. code:: bash
   python -m venv venv

   # For linux
   source venv/bin/activate

   # For windowx
   venv\Scripts/activate.bat

Install the requirements and install the package in dev mode
.. code:: bash
   
   pip install -r requirements_docs.txt
   pip install -e .

Change to the dev branch to add changes

.. code:: bash
   git checkout dev
   
Updating documentation
-----------------------------------

The documentation for pyprocar are generated by using sphinx and the sphinx-gallery packages. 
If you add code to the package, make sure to add the proper doc strings to be automatically generated.

To generate the documentation you will need to run the following code from the top-level directory:

.. code:: bash

   cd sphinx
   make clean & make html

This will clean the sphinx/_build directory and it will remove all aut-generated docs.
Once make html is called it will start generating the html files and store them in sphinx/_build.
After you have check the documentation and make sure there are no warnings or errors,
you will need to copy the contents of sphinx/_build/html/ to docs and save over 
everything in that directory. This can be achieved by running the below code:

.. code:: bash

   make deploy


Finally, you can push the changes to github.

Running tests 
-----------------------------------

In the current version of pyprocar, we have added to external tests to test the functionality of the package. 
To do this you will need to download the development data by running the following code.

.. code:: python

   import pyprocar
   pyprocar.download_dev_data()

This will download the development data to pyprocar/data/examples.

Now to run the tests, from the top directory run pytest

back to top