├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ ├── deploy_demo.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .somesy.toml ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── CC0-1.0.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── codemeta.json ├── fair_sw_mermaid.txt ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── src └── fair_python_cookiecutter │ ├── __init__.py │ ├── cli.py │ ├── config.py │ ├── main.py │ ├── template │ ├── cookiecutter.json │ ├── post_gen_project.bat │ └── {{ cookiecutter.project_slug }} │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ └── workflows │ │ │ ├── ci.yml │ │ │ └── release.yml │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .gitlab │ │ └── issue_templates │ │ │ └── Default.md │ │ ├── .pre-commit-config.yaml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CITATION.cff │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── docs │ │ ├── changelog.md │ │ ├── code_of_conduct.md │ │ ├── contributing.md │ │ ├── credits.md │ │ ├── css │ │ │ └── style.css │ │ ├── dev_guide.md │ │ ├── index.md │ │ ├── license.md │ │ ├── logo.svg │ │ ├── overrides │ │ │ ├── main.html │ │ │ └── partials │ │ │ │ └── copyright.html │ │ ├── quickstart.md │ │ └── scripts │ │ │ ├── coverage_status.py │ │ │ └── gen_ref_pages.py │ │ ├── mkdocs.yml │ │ ├── pyproject.toml │ │ ├── somesy.toml │ │ ├── src │ │ └── {{ cookiecutter.project_package }} │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── cli.py │ │ │ └── lib.py │ │ ├── temp-REUSE.toml │ │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_api.py │ │ ├── test_cli.py │ │ └── test_lib.py │ └── utils.py └── tests ├── demo.yaml ├── test_main.py └── test_utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.github/workflows/deploy_demo.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.somesy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/.somesy.toml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/REUSE.toml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/codemeta.json -------------------------------------------------------------------------------- /fair_sw_mermaid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/fair_sw_mermaid.txt -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/__init__.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/cli.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/config.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/main.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/cookiecutter.json -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/post_gen_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/post_gen_project.bat -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/workflows/ci.yml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/workflows/release.yml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.gitignore -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.gitlab-ci.yml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.gitlab/issue_templates/Default.md: -------------------------------------------------------------------------------- 1 | Please select a suitable issue template! 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.pre-commit-config.yaml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/AUTHORS.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CHANGELOG.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CITATION.cff -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/README.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/code_of_conduct.md: -------------------------------------------------------------------------------- 1 | --8<-- "CODE_OF_CONDUCT.md" 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/contributing.md: -------------------------------------------------------------------------------- 1 | --8<-- "CONTRIBUTING.md" 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/credits.md: -------------------------------------------------------------------------------- 1 | --8<-- "AUTHORS.md" 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/css/style.css -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/dev_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/dev_guide.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/index.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/license.md -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/logo.svg -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/overrides/main.html -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/overrides/partials/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/overrides/partials/copyright.html -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/quickstart.md: -------------------------------------------------------------------------------- 1 | --8<-- "README.md:quickstart" 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/scripts/coverage_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/scripts/coverage_status.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/scripts/gen_ref_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/docs/scripts/gen_ref_pages.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/mkdocs.yml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/pyproject.toml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/somesy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/somesy.toml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/__init__.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/api.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/cli.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/src/{{ cookiecutter.project_package }}/lib.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/temp-REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/temp-REUSE.toml -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for {{ cookiecutter.project_slug }}.""" 2 | -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/conftest.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/test_api.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/test_cli.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/tests/test_lib.py -------------------------------------------------------------------------------- /src/fair_python_cookiecutter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/src/fair_python_cookiecutter/utils.py -------------------------------------------------------------------------------- /tests/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/tests/demo.yaml -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter/HEAD/tests/test_utils.py --------------------------------------------------------------------------------