fair-python-cookiecutter


Namefair-python-cookiecutter JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://materials-data-science-and-informatics.github.io/fair-python-cookiecutter
SummaryAn opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata.
upload_time2024-02-27 11:36:56
maintainerAnton Pirogov
docs_urlNone
authorAnton Pirogov
requires_python>=3.8,<4.0
licenseMIT
keywords fair metadata python cookiecutter template
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [
![Docs](https://img.shields.io/badge/read-docs-success)
](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter)
[
![CI](https://img.shields.io/github/actions/workflow/status/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/ci.yml?branch=main&label=ci)
](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/actions/workflows/ci.yml)

<!-- --8<-- [start:abstract] -->

<br />
<div>
<img style="center-align: middle;" alt="FAIR Python Cookiecutter Logo" src="https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/Logos/main/FAIRPythonCookiecutter/FAIRPYTHONCOOKIECUTTER_Logo_Text.png" width=70% height=70% />
&nbsp;&nbsp;
</div>
<br />

# fair-python-cookiecutter

An opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata.

<!-- NOTE: For technical reasons, it is much easier to use GitHub
     for hosting the mindmap than adding it to the repository -->
![FAIR Software Mindmap](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/assets/371708/ef566ee1-8965-4d58-9ede-18eeb49a476e)

*Check out the
[demo repository](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter-demo)
generated from this template!*

## Overview

Are you a **researcher** or **research software engineer**?

Did you somehow end up developing **Python tools and libraries** as part of your job?

Are you overwhelmed and confused by the increasing demands to research software?

Regardless whether you are just planning to start a new software project, or you just
look for ideas about how you could improve its quality - **this template is for you!**

Unlike myriads of other templates, this template targets the typical case in academia -
you built some nice little tool or library for your scientific community,
and hope that others have a **good experience** - you want to provide a **quality
product** that others enjoy using. In case they actually do use it with some success, you
might also like to be acknowledged - for example, by having your tool **cited**.

To ensure quality, there are many **best practices** and recommendations for **software
development** on various levels, both general as well as Python-specific. To help others
find your project and also enable them to cite it, there are also recommendations
concerning your software project **metadata**. In fact, there are so many recommendations
that it can be hard to keep up and easy to become overwhelmed and confused.

To save you some time navigating all of that advice and figuring out how to apply it in
practice, we did the work for you and provide you with this template!
You can use it as is, adapt it, or at least get some inspiration for your projects.

## Main Features

This template sets up a skeleton for a Python project that:

* uses modern state-of-the-art development tools
* provides a baseline for professional development and maintenance
* helps following best practices for code and metadata quality
* contains detailed documentation on how to work with it

It is built to help you adopting good practices
and follow recommendations such as:

* [DLR Software Engineering Guidelines](https://rse.dlr.de/guidelines/00_dlr-se-guidelines_en.html)
* [OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/en/criteria/0)
* [Netherlands eScience Center](https://fair-software.eu)
* innumerable other resources that can be found online

Furthermore, it implements emerging standards with the goal to improve
software metadata and make it more [FAIR](https://www.go-fair.org/fair-principles/):

* [REUSE](https://reuse.software/)
* [CITATION.cff](https://citation-file-format.github.io/)
* [CodeMeta](https://codemeta.github.io/)

Also see [this paper](https://doi.org/10.48550/arXiv.1905.08674) for an overview and
recommendations on the state of software citation in academic practice.

<!-- --8<-- [end:abstract] -->

<!-- --8<-- [start:quickstart] -->

## Getting Started

Make sure that you have a working Python interpreter in version at least 3.8,
`git` and [`poetry`](https://python-poetry.org/docs/#installation) installed.

To install the template, run `pip install fair-python-cookiecutter`.

Now you can use the tool to generate a new Python project:

```bash
fair-python-cookiecutter YourProjectName
```

This will spawn an interactive prompt, where you have to provide some information and
make some choices for your new software project. Don't worry, you can always adapt
everything later on by hand. After this, your software project will be created in
a new directory.

To save you some time answering the questions, we recommend that you create an empty repository
in GitHub or GitLab of your choice (i.e., the location where you plan to push your new project).

If you already have created an empty remote repository or know exactly its future
location, you can provide the URL, which already will provide many required inputs:

```bash
fair-python-cookiecutter --repo-url https://github.com/YourOrganization/YourProjectName
```

Your new project repository will also include a copy of a
[developer guide](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter-demo/latest/dev_guide),
containing more information about the structure and features of the generated project.

**Please familiarize yourself with the generated structures, files and the contents of the
developer guide.** Feel free to either remove the guide afterwards, or keep (and possibly
adjust) it as extended technical project documentation for yourself and other future
project contributors.

You can find a demo repository generated from this template [here](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter-demo).

## Configuring the Template

If you intend to use the template a lot, e.g. if you want to use (an adaptation of)
this template as the default way to start a Python project for yourself and/or others,
you might want to configure some template variables in your `~/.cookiecutterrc`.
Here is an example cookiecutter configuration:

```yaml
fair_python_cookiecutter:
  last_name: "Carberry"
  first_name: "Josiah"
  project_keywords: "psychoceramics analytics"
  email: "josiah.carberry@brown.edu"
  orcid: "0000-0002-1825-0097"
  affiliation: "Brown University"
  copyright_holder: "Brown University"
  license: "MIT"
```

This information will be already pre-filled when you use the template,
saving you some time and possibly avoiding possible mistakes from manual typing.

## Modifying the Template

If you want to adjust it to your needs and likings (e.g. add, remove or substitute certain
tools), you probably want to
[fork](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/fork)
it to get your own copy. Then you can do the desired changes and use the URL of your
template repository instead of this one to kickstart your projects.

However, if you think that your changes are of general interest and would improve this
template for a majority of users, please get in touch
and [contribute](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter/main/contributing/)
or [suggest](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/issues) an improvement!

In any case we are very happy to know about any similar or derivative templates, e.g. for
more specific use-cases or based on other tool preferences.

## Reusing Parts of the Template

If you already have an existing project where you would like to introduce things you like
from this template, there are two main ways to do so:

1. move your code into a fresh repository based on this template
2. use parts of the template in your existing project structure

If your project currently has no sophisticated setup of tools or strong preferences about
them, option 1 might be the simplest way to adopt the template. Your code then needs to be
moved into the `YOUR_PROJECT/src/YOUR_PACKAGE` subdirectory.

On the other hand, if you already have a working setup that you do not wish to replace
completely, you can take a look at

* the `.pre-commit-config.yaml` file to adopt some of the quality assurance tools listed there
* the CI pipelines defined in `.github/workflows` or `.gitlab-ci.yml` for automated tests and releases
* the `mkdocs.yml` and `docs/` subdirectory to see how the project website works

<!-- --8<-- [end:quickstart] -->

<!-- --8<-- [start:citation] -->

## How to Cite

If you want to cite this project in your scientific work,
please use the [citation file](https://citation-file-format.github.io/)
in the [repository](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/blob/main/CITATION.cff).

<!-- --8<-- [end:citation] -->
<!-- --8<-- [start:acknowledgements] -->

## Acknowledgements

We kindly thank all
[authors and contributors](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter/latest/credits).

<div>
<img style="vertical-align: middle;" alt="HMC Logo" src="https://github.com/Materials-Data-Science-and-Informatics/Logos/raw/main/HMC/HMC_Logo_M.png" width=50% height=50% />
&nbsp;&nbsp;
<img style="vertical-align: middle;" alt="FZJ Logo" src="https://github.com/Materials-Data-Science-and-Informatics/Logos/raw/main/FZJ/FZJ.png" width=30% height=30% />
</div>
<br />

This project was developed at the Institute for Materials Data Science and Informatics
(IAS-9) of the Jülich Research Center and funded by the Helmholtz Metadata Collaboration
(HMC), an incubator-platform of the Helmholtz Association within the framework of the
Information and Data Science strategic initiative.

<!-- --8<-- [end:acknowledgements] -->


            

Raw data

            {
    "_id": null,
    "home_page": "https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter",
    "name": "fair-python-cookiecutter",
    "maintainer": "Anton Pirogov",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "a.pirogov@fz-juelich.de",
    "keywords": "fair,metadata,python,cookiecutter,template",
    "author": "Anton Pirogov",
    "author_email": "a.pirogov@fz-juelich.de",
    "download_url": "https://files.pythonhosted.org/packages/54/e4/8353cff1f3aabc8e64abf2888b9745fb484fa5eb7dcc68283d3b6f0fbdd2/fair_python_cookiecutter-0.3.0.tar.gz",
    "platform": null,
    "description": "[\n![Docs](https://img.shields.io/badge/read-docs-success)\n](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter)\n[\n![CI](https://img.shields.io/github/actions/workflow/status/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/ci.yml?branch=main&label=ci)\n](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/actions/workflows/ci.yml)\n\n<!-- --8<-- [start:abstract] -->\n\n<br />\n<div>\n<img style=\"center-align: middle;\" alt=\"FAIR Python Cookiecutter Logo\" src=\"https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/Logos/main/FAIRPythonCookiecutter/FAIRPYTHONCOOKIECUTTER_Logo_Text.png\" width=70% height=70% />\n&nbsp;&nbsp;\n</div>\n<br />\n\n# fair-python-cookiecutter\n\nAn opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata.\n\n<!-- NOTE: For technical reasons, it is much easier to use GitHub\n     for hosting the mindmap than adding it to the repository -->\n![FAIR Software Mindmap](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/assets/371708/ef566ee1-8965-4d58-9ede-18eeb49a476e)\n\n*Check out the\n[demo repository](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter-demo)\ngenerated from this template!*\n\n## Overview\n\nAre you a **researcher** or **research software engineer**?\n\nDid you somehow end up developing **Python tools and libraries** as part of your job?\n\nAre you overwhelmed and confused by the increasing demands to research software?\n\nRegardless whether you are just planning to start a new software project, or you just\nlook for ideas about how you could improve its quality - **this template is for you!**\n\nUnlike myriads of other templates, this template targets the typical case in academia -\nyou built some nice little tool or library for your scientific community,\nand hope that others have a **good experience** - you want to provide a **quality\nproduct** that others enjoy using. In case they actually do use it with some success, you\nmight also like to be acknowledged - for example, by having your tool **cited**.\n\nTo ensure quality, there are many **best practices** and recommendations for **software\ndevelopment** on various levels, both general as well as Python-specific. To help others\nfind your project and also enable them to cite it, there are also recommendations\nconcerning your software project **metadata**. In fact, there are so many recommendations\nthat it can be hard to keep up and easy to become overwhelmed and confused.\n\nTo save you some time navigating all of that advice and figuring out how to apply it in\npractice, we did the work for you and provide you with this template!\nYou can use it as is, adapt it, or at least get some inspiration for your projects.\n\n## Main Features\n\nThis template sets up a skeleton for a Python project that:\n\n* uses modern state-of-the-art development tools\n* provides a baseline for professional development and maintenance\n* helps following best practices for code and metadata quality\n* contains detailed documentation on how to work with it\n\nIt is built to help you adopting good practices\nand follow recommendations such as:\n\n* [DLR Software Engineering Guidelines](https://rse.dlr.de/guidelines/00_dlr-se-guidelines_en.html)\n* [OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/en/criteria/0)\n* [Netherlands eScience Center](https://fair-software.eu)\n* innumerable other resources that can be found online\n\nFurthermore, it implements emerging standards with the goal to improve\nsoftware metadata and make it more [FAIR](https://www.go-fair.org/fair-principles/):\n\n* [REUSE](https://reuse.software/)\n* [CITATION.cff](https://citation-file-format.github.io/)\n* [CodeMeta](https://codemeta.github.io/)\n\nAlso see [this paper](https://doi.org/10.48550/arXiv.1905.08674) for an overview and\nrecommendations on the state of software citation in academic practice.\n\n<!-- --8<-- [end:abstract] -->\n\n<!-- --8<-- [start:quickstart] -->\n\n## Getting Started\n\nMake sure that you have a working Python interpreter in version at least 3.8,\n`git` and [`poetry`](https://python-poetry.org/docs/#installation) installed.\n\nTo install the template, run `pip install fair-python-cookiecutter`.\n\nNow you can use the tool to generate a new Python project:\n\n```bash\nfair-python-cookiecutter YourProjectName\n```\n\nThis will spawn an interactive prompt, where you have to provide some information and\nmake some choices for your new software project. Don't worry, you can always adapt\neverything later on by hand. After this, your software project will be created in\na new directory.\n\nTo save you some time answering the questions, we recommend that you create an empty repository\nin GitHub or GitLab of your choice (i.e., the location where you plan to push your new project).\n\nIf you already have created an empty remote repository or know exactly its future\nlocation, you can provide the URL, which already will provide many required inputs:\n\n```bash\nfair-python-cookiecutter --repo-url https://github.com/YourOrganization/YourProjectName\n```\n\nYour new project repository will also include a copy of a\n[developer guide](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter-demo/latest/dev_guide),\ncontaining more information about the structure and features of the generated project.\n\n**Please familiarize yourself with the generated structures, files and the contents of the\ndeveloper guide.** Feel free to either remove the guide afterwards, or keep (and possibly\nadjust) it as extended technical project documentation for yourself and other future\nproject contributors.\n\nYou can find a demo repository generated from this template [here](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter-demo).\n\n## Configuring the Template\n\nIf you intend to use the template a lot, e.g. if you want to use (an adaptation of)\nthis template as the default way to start a Python project for yourself and/or others,\nyou might want to configure some template variables in your `~/.cookiecutterrc`.\nHere is an example cookiecutter configuration:\n\n```yaml\nfair_python_cookiecutter:\n  last_name: \"Carberry\"\n  first_name: \"Josiah\"\n  project_keywords: \"psychoceramics analytics\"\n  email: \"josiah.carberry@brown.edu\"\n  orcid: \"0000-0002-1825-0097\"\n  affiliation: \"Brown University\"\n  copyright_holder: \"Brown University\"\n  license: \"MIT\"\n```\n\nThis information will be already pre-filled when you use the template,\nsaving you some time and possibly avoiding possible mistakes from manual typing.\n\n## Modifying the Template\n\nIf you want to adjust it to your needs and likings (e.g. add, remove or substitute certain\ntools), you probably want to\n[fork](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/fork)\nit to get your own copy. Then you can do the desired changes and use the URL of your\ntemplate repository instead of this one to kickstart your projects.\n\nHowever, if you think that your changes are of general interest and would improve this\ntemplate for a majority of users, please get in touch\nand [contribute](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter/main/contributing/)\nor [suggest](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/issues) an improvement!\n\nIn any case we are very happy to know about any similar or derivative templates, e.g. for\nmore specific use-cases or based on other tool preferences.\n\n## Reusing Parts of the Template\n\nIf you already have an existing project where you would like to introduce things you like\nfrom this template, there are two main ways to do so:\n\n1. move your code into a fresh repository based on this template\n2. use parts of the template in your existing project structure\n\nIf your project currently has no sophisticated setup of tools or strong preferences about\nthem, option 1 might be the simplest way to adopt the template. Your code then needs to be\nmoved into the `YOUR_PROJECT/src/YOUR_PACKAGE` subdirectory.\n\nOn the other hand, if you already have a working setup that you do not wish to replace\ncompletely, you can take a look at\n\n* the `.pre-commit-config.yaml` file to adopt some of the quality assurance tools listed there\n* the CI pipelines defined in `.github/workflows` or `.gitlab-ci.yml` for automated tests and releases\n* the `mkdocs.yml` and `docs/` subdirectory to see how the project website works\n\n<!-- --8<-- [end:quickstart] -->\n\n<!-- --8<-- [start:citation] -->\n\n## How to Cite\n\nIf you want to cite this project in your scientific work,\nplease use the [citation file](https://citation-file-format.github.io/)\nin the [repository](https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/blob/main/CITATION.cff).\n\n<!-- --8<-- [end:citation] -->\n<!-- --8<-- [start:acknowledgements] -->\n\n## Acknowledgements\n\nWe kindly thank all\n[authors and contributors](https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter/latest/credits).\n\n<div>\n<img style=\"vertical-align: middle;\" alt=\"HMC Logo\" src=\"https://github.com/Materials-Data-Science-and-Informatics/Logos/raw/main/HMC/HMC_Logo_M.png\" width=50% height=50% />\n&nbsp;&nbsp;\n<img style=\"vertical-align: middle;\" alt=\"FZJ Logo\" src=\"https://github.com/Materials-Data-Science-and-Informatics/Logos/raw/main/FZJ/FZJ.png\" width=30% height=30% />\n</div>\n<br />\n\nThis project was developed at the Institute for Materials Data Science and Informatics\n(IAS-9) of the J\u00fclich Research Center and funded by the Helmholtz Metadata Collaboration\n(HMC), an incubator-platform of the Helmholtz Association within the framework of the\nInformation and Data Science strategic initiative.\n\n<!-- --8<-- [end:acknowledgements] -->\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata.",
    "version": "0.3.0",
    "project_urls": {
        "Documentation": "https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter",
        "Homepage": "https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter",
        "Repository": "https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter"
    },
    "split_keywords": [
        "fair",
        "metadata",
        "python",
        "cookiecutter",
        "template"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "030233f6cf0d2d502d6fdb50ed052168ebfbc0a520669a0ea4fb472e6d55ef4f",
                "md5": "2851b71af33138c3cd96ac171ffb6078",
                "sha256": "4418e7f793f4cec99b0660c8c450789a1cc221d6ad1ec81845792f9a5db98696"
            },
            "downloads": -1,
            "filename": "fair_python_cookiecutter-0.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2851b71af33138c3cd96ac171ffb6078",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 76662,
            "upload_time": "2024-02-27T11:36:54",
            "upload_time_iso_8601": "2024-02-27T11:36:54.644780Z",
            "url": "https://files.pythonhosted.org/packages/03/02/33f6cf0d2d502d6fdb50ed052168ebfbc0a520669a0ea4fb472e6d55ef4f/fair_python_cookiecutter-0.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54e48353cff1f3aabc8e64abf2888b9745fb484fa5eb7dcc68283d3b6f0fbdd2",
                "md5": "23e73fd4f63eda5000f6d3267c593515",
                "sha256": "3b74055936d51b5a786dbadd30e173af1e7cb0a1dc35c3601c57ee79cf3ea2a3"
            },
            "downloads": -1,
            "filename": "fair_python_cookiecutter-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "23e73fd4f63eda5000f6d3267c593515",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 55709,
            "upload_time": "2024-02-27T11:36:56",
            "upload_time_iso_8601": "2024-02-27T11:36:56.392428Z",
            "url": "https://files.pythonhosted.org/packages/54/e4/8353cff1f3aabc8e64abf2888b9745fb484fa5eb7dcc68283d3b6f0fbdd2/fair_python_cookiecutter-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-27 11:36:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Materials-Data-Science-and-Informatics",
    "github_project": "fair-python-cookiecutter",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fair-python-cookiecutter"
}
        
Elapsed time: 0.19749s