Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.8 KB

File metadata and controls

59 lines (37 loc) · 1.8 KB

Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

You can contribute in many ways:

Please note that contributions of any kind that are authored by large language models will not be accepted.

Get Started!

Ready to contribute? Here's how to set up pronouncing for local development.

  1. Fork the pronouncing repo on GitHub.

  2. Clone your fork locally:

    $ git clone git@github.com:your_name_here/pronouncingpy.git
    
  3. Create a virtual environment and install your local copy of the package:

    $ pip install -e .
    
  4. Create a branch for local development:

    $ git checkout -b name-of-your-bugfix-or-feature
    

    Now you can make your changes locally.

  5. When you're done making changes, check that your changes pass flake8 and the tests:

    $ flake8 pronouncing tests
    $ python -m unittest
    
  6. Commit your changes and push your branch to GitHub:

    $ git add .
    $ git commit -m "Your detailed description of your changes."
    $ git push origin name-of-your-bugfix-or-feature
    
  7. Submit a pull request through the GitHub website.

Pull Request Guidelines

Before you submit a pull request, check that it meets these guidelines:

  1. The pull request should include tests.
  2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.