├── .editorconfig ├── .github ├── dependabot.yml ├── workflows │ └── test.yml └── zizmor.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cookiecutter.json ├── hooks ├── post_gen_project.py └── pre_gen_project.py ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── tests ├── conftest.py ├── test_integration.sh └── test_project_generation.py └── {{cookiecutter.project_name}} ├── .editorconfig ├── .github ├── dependabot.yml ├── workflows │ └── test.yml └── zizmor.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── _templates │ ├── badges.html │ ├── github.html │ └── moreinfo.html ├── conf.py ├── index.rst ├── make.bat └── pages │ └── changelog.rst ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── tests └── test_example │ └── test_some_function.py └── {{cookiecutter.project_name.lower().replace('-', '_')}} ├── __init__.py ├── example.py └── py.typed /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /hooks/pre_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/hooks/pre_gen_project.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/tests/test_integration.sh -------------------------------------------------------------------------------- /tests/test_project_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/tests/test_project_generation.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.editorconfig -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.github/dependabot.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.github/workflows/test.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.github/zizmor.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.pre-commit-config.yaml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/.readthedocs.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/CHANGELOG.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/CONTRIBUTING.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/Makefile -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/Makefile -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/_templates/badges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/_templates/badges.html -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/_templates/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/_templates/github.html -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/_templates/moreinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/_templates/moreinfo.html -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/conf.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/index.rst -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/docs/make.bat -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docs/pages/changelog.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../CHANGELOG.md 2 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/poetry.lock -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/pyproject.toml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/setup.cfg -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/tests/test_example/test_some_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/tests/test_example/test_some_function.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/{{cookiecutter.project_name.lower().replace('-', '_')}}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/{{cookiecutter.project_name.lower().replace('-', '_')}}/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/wemake-python-package/HEAD/{{cookiecutter.project_name}}/{{cookiecutter.project_name.lower().replace('-', '_')}}/example.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/{{cookiecutter.project_name.lower().replace('-', '_')}}/py.typed: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------