Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 2.85 KB

CONTRIBUTING.md

File metadata and controls

56 lines (38 loc) · 2.85 KB

Contributing to BioSimulations-BiGG

We enthusiastically welcome contributions to BioSimulations-BiGG!

Coordinating contributions

Before getting started, please contact the lead developers at info@biosimulations.org to coordinate your planned contributions with other ongoing efforts. Please also use GitHub issues to announce your plans to the community so that other developers can provide input into your plans and coordinate their own work. As the development community grows, we will institute additional infrastructure as needed such as a leadership committee and regular online meetings.

Repository organization

This repository follows standard Python conventions:

  • README.md: Overview of this repository
  • biosimulations_bigg/: Source code for this package
  • biosimulations_bigg/source/: Directory where this package stores source files from BiGG and PubMed Central
  • biosimulations_bigg/final/: Directory where this package stores COMBINE/OMEX archives assembled from BiGG
  • docs-src/: Source for documentation
  • docs/: Compiled documentation
  • setup.py: pip installation script for this package
  • setup.cfg: Configuration for the pip installation script
  • requirements.txt: Dependencies of this package
  • requirements.optional.txt: Optional dependencies of this package
  • MANIFEST.in: List of files to include when BioSimulations-BiGG is packaged for distribution through PyPI
  • LICENSE: License for this package
  • CONTRIBUTING.md: Guide to contributing to this package (this document)
  • CODE_OF_CONDUCT.md: Code of conduct for developers of this package

Coding convention

This repository follows standard Python style conventions:

  • Class names: UpperCamelCase
  • Function names: lower_snake_case
  • Variable names: lower_snake_case

Documentation convention

BioSimulations-BiGG is documented using reStructuredText and the napoleon Sphinx plugin. The documentation can be compiled with Sphinx by running the following commands:

python -m pip install -r docs-src/requirements.txt
sphinx-apidoc . setup.py --output-dir docs-src/source --force --module-first --no-toc
sphinx-build docs-src docs

Submitting changes

Please use GitHub pull requests to submit changes. Each request should include a brief description of the new and/or modified features.

Reporting issues

Please use GitHub issues to report any issues to the development community.

Getting help

Please use GitHub issues to post questions or contact the lead developers at info@biosimulations.org.