Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
Ready to contribute? Here's how to set up czi-to-ome-xslt
for local development.
-
Fork the
czi-to-ome-xslt
repo on GitHub. -
Clone your fork locally:
git clone git@github.com:{your_name_here}/czi-to-ome-xslt.git
-
Install dependencies:
pip install -r tests/python-requirements.txt
-
Create a branch for local development:
git checkout -b {your_development_type}/short-description
Ex: feature/read-tiff-files or bugfix/handle-file-not-found
Now you can make your changes locally. -
When you're done making changes, check that your changes pass tests:
pytest tests/test_transform.py
-
Commit your changes and push your branch to GitHub:
git add . git commit -m "Resolves gh-###. Your detailed description of your changes." git push origin {your_development_type}/short-description
-
Submit a pull request through the GitHub website.