diff --git a/python/cookiecutter.json b/python/cookiecutter.json index 5aad69f..a0ee48b 100644 --- a/python/cookiecutter.json +++ b/python/cookiecutter.json @@ -1,12 +1,13 @@ { - "project_name": "Wagner Lab project", - "project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}", - "description": "Short project description", - "org": "genomicmedlab", - "repo": "{{ cookiecutter.project_slug }}", - "your_name": "", - "your_email": "", - "add_docs": [false, true], - "add_cli": [false, true], - "add_fastapi": [false, true] + "project_name": "Wagner Lab project", + "project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}", + "description": "Short project description", + "org": "genomicmedlab", + "repo": "{{ cookiecutter.project_slug }}", + "your_name": "", + "your_email": "", + "codeowners": "GenomicMedLab/wagner-lab-developers", + "add_docs": [false, true], + "add_cli": [false, true], + "add_fastapi": [false, true] } diff --git a/python/{{cookiecutter.project_slug}}/.github/CODEOWNERS b/python/{{cookiecutter.project_slug}}/.github/CODEOWNERS new file mode 100644 index 0000000..386d48f --- /dev/null +++ b/python/{{cookiecutter.project_slug}}/.github/CODEOWNERS @@ -0,0 +1 @@ +{% if cookiecutter.codeowners != "" %}* @{{ cookiecutter.codeowners }}{% endif %}