├── .gitignore ├── README.md ├── cookiecutter.json └── {{cookiecutter.app_name}} ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yml │ ├── 2-feature-request.yml │ ├── 3-documentation.yml │ └── config.yml ├── pull_request_template.md └── workflows │ ├── docs.yml │ ├── publish.yml │ ├── test-docs.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ └── index.rst ├── pyproject.toml ├── tests ├── __init__.py └── test_sample.py └── {{cookiecutter.app_name}} └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/1-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/1-bug-report.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/2-feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/2-feature-request.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/3-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/3-documentation.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/pull_request_template.md -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/workflows/docs.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/workflows/publish.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/workflows/test-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/workflows/test-docs.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.github/workflows/test.yml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v0.0.1 2 | 3 | * todo -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/LICENSE.md -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/Makefile -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/docs/Makefile -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/docs/make.bat -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/docs/requirements.txt -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/docs/source/conf.py -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/docs/source/index.rst -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/pyproject.toml -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdm0006/cookiecutter-pipproject/HEAD/{{cookiecutter.app_name}}/tests/test_sample.py -------------------------------------------------------------------------------- /{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------