Metadata-Version: 2.1
Name: sphinxcontrib-apa
Version: 1.0.0
Summary: Simple APA citation style for Sphinx and Jupyter Book
Home-page: UNKNOWN
Author: Jean M. Lescure
License: Apache-2.0
Description: # sphinxcontrib-apa
        
        Simple APA citation style for [Sphinx](https://www.sphinx-doc.org/) and [Juptyer Book](https://jupyterbook.org/).
        
        ## Open source notice
        
        This project is open to updates by its users, [I](https://github.com/jeanlescure) ensure that PRs are relevant to the community.
        In other words, if you find a bug or want a new feature, please help us by becoming one of the
        [contributors](#contributors-) ✌️ ! See the [contributing section](#contributing)
        
        ## Like this module? ❤
        
        Please consider:
        
        - [Buying me a coffee](https://www.buymeacoffee.com/jeanlescure) ☕
        - Supporting Simply Hexagonal on [Open Collective](https://opencollective.com/simplyhexagonal) 🏆
        - Starring this repo on [Github](https://github.com/simplyhexagonal/package) 🌟
        
        ## Install
        
        ```sh
        pip install sphinxcontrib-apa
        ```
        
        ## Usage
        
        Sphinx:
        
        ```py
        # conf.py
        
        extensions = [
            'sphinxcontrib.bibtex',
            'sphinxcontrib.apa'
        ]
        
        bibtex_reference_style = 'apastyle'
        bibtex_default_style = 'apa'
        ```
        
        Jupyter Book:
        
        ```yaml
        sphinx:
          extra_extensions:
            - sphinxcontrib.apa
          config:
            bibtex_reference_style: apastyle
            bibtex_default_style: apa
        ```
        
        ## Contributing
        
        Yes, thank you! This plugin is community-driven, most of its features are from different authors.
        Please update the docs and tests and add your name to the `setup.py` file.
        
        ## Contributors ✨
        
        Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
        
        <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
        <!-- prettier-ignore-start -->
        <!-- markdownlint-disable -->
        <table>
          <tr>
            <td align="center"><a href="https://jeanlescure.cr"><img src="https://avatars2.githubusercontent.com/u/3330339?v=4" width="100px;" alt=""/><br /><sub><b>Jean Lescure</b></sub></a><br /><a href="#maintenance-jeanlescure" title="Maintenance">🚧</a> <a href="https://github.com/simplyhexagonal/package/commits?author=jeanlescure" title="Code">💻</a> <a href="#userTesting-jeanlescure" title="User Testing">📓</a> <a href="https://github.com/simplyhexagonal/package/commits?author=jeanlescure" title="Tests">⚠️</a> <a href="#example-jeanlescure" title="Examples">💡</a> <a href="https://github.com/simplyhexagonal/package/commits?author=jeanlescure" title="Documentation">📖</a></td>
        </table>
        
        <!-- markdownlint-enable -->
        <!-- prettier-ignore-end -->
        <!-- ALL-CONTRIBUTORS-LIST:END -->
        ## License
        
        Copyright (c) 2022-Present [sphinxcontrib-apa Contributors](https://github.com/jeanlescure/sphinxcontrib-apa/#contributors-).<br/>
        Licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Documentation
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
