.gitignore
.pre-commit-config.yaml
LICENSE
README.md
noxfile.py
pyproject.toml
.github/CODEOWNERS
.github/dependabot.yml
.github/pr-labeler.yaml
.github/release-drafter.yml
.github/renovate.json
.github/workflows/dependabot.yaml
.github/workflows/pipeline.yaml
.github/workflows/pr-labeler.yaml
.github/workflows/release-management.yaml
docs/mkdocs.yml
docs/source/index.md
docs/source/usage.md
docs/source/api/nskit.common.md
docs/source/api/nskit.mixer.md
docs/source/api/nskit.recipes.md
docs/source/api/nskit.vcs.md
docs/source/assets/images/favicon.ico
docs/source/assets/images/favicon.png
docs/source/assets/images/favicon/android-chrome-72x72.png
docs/source/assets/images/favicon/apple-touch-icon.png
docs/source/assets/images/favicon/browserconfig.xml
docs/source/assets/images/favicon/favicon-16x16.png
docs/source/assets/images/favicon/favicon-32x32.png
docs/source/assets/images/favicon/favicon.ico
docs/source/assets/images/favicon/favicon.png
docs/source/assets/images/favicon/mstile-150x150.png
docs/source/assets/images/favicon/safari-pinned-tab.svg
docs/source/assets/images/favicon/site.webmanifest
docs/source/developing/index.md
docs/source/developing/license.md
src/nskit/__init__.py
src/nskit/_logging.py
src/nskit/_version.py
src/nskit.egg-info/PKG-INFO
src/nskit.egg-info/SOURCES.txt
src/nskit.egg-info/dependency_links.txt
src/nskit.egg-info/entry_points.txt
src/nskit.egg-info/requires.txt
src/nskit.egg-info/top_level.txt
src/nskit/common/__init__.py
src/nskit/common/extensions.py
src/nskit/common/lazy.py
src/nskit/common/configuration/__init__.py
src/nskit/common/configuration/mixins.py
src/nskit/common/configuration/sources.py
src/nskit/common/contextmanagers/__init__.py
src/nskit/common/contextmanagers/chdir.py
src/nskit/common/contextmanagers/env.py
src/nskit/common/contextmanagers/test_extensions.py
src/nskit/common/io/__init__.py
src/nskit/common/io/json.py
src/nskit/common/io/toml.py
src/nskit/common/io/yaml.py
src/nskit/common/logging/__init__.py
src/nskit/common/logging/config.py
src/nskit/common/logging/formatter.py
src/nskit/common/logging/library.py
src/nskit/common/logging/logger.py
src/nskit/mixer/__init__.py
src/nskit/mixer/repo.py
src/nskit/mixer/utilities.py
src/nskit/mixer/components/__init__.py
src/nskit/mixer/components/file.py
src/nskit/mixer/components/filesystem_object.py
src/nskit/mixer/components/folder.py
src/nskit/mixer/components/hook.py
src/nskit/mixer/components/license_file.py
src/nskit/mixer/components/recipe.py
src/nskit/mixer/hooks/__init__.py
src/nskit/mixer/hooks/git.py
src/nskit/mixer/hooks/pre_commit.py
src/nskit/recipes/__init__.py
src/nskit/recipes/recipe.py
src/nskit/recipes/python/__init__.py
src/nskit/recipes/python/api.py
src/nskit/recipes/python/package.py
src/nskit/recipes/python/ingredients/__init__.py
src/nskit/recipes/python/ingredients/__init__.py.template
src/nskit/recipes/python/ingredients/gitignore.template
src/nskit/recipes/python/ingredients/noxfile.py.template
src/nskit/recipes/python/ingredients/pre-commit-config.yaml.template
src/nskit/recipes/python/ingredients/pyproject.toml.template
src/nskit/recipes/python/ingredients/readme.md.template
src/nskit/recipes/python/ingredients/api/__init__.py
src/nskit/recipes/python/ingredients/api/api.__init__.py.template
src/nskit/recipes/python/ingredients/api/api.base.py.template
src/nskit/recipes/python/ingredients/api/app.py.template
src/nskit/recipes/python/ingredients/api/auth.py.template
src/nskit/recipes/python/ingredients/api/pyproject.toml.template
src/nskit/recipes/python/ingredients/api/readme.md.template
src/nskit/recipes/python/ingredients/api/server.py.template
src/nskit/recipes/python/ingredients/api/docker/__init__.py
src/nskit/recipes/python/ingredients/api/docker/api.Dockerfile.template
src/nskit/recipes/python/ingredients/api/docker/dockerignore.template
src/nskit/recipes/python/ingredients/docs/__init__.py
src/nskit/recipes/python/ingredients/docs/developing_index.md.template
src/nskit/recipes/python/ingredients/docs/index.md.template
src/nskit/recipes/python/ingredients/docs/license.md.template
src/nskit/recipes/python/ingredients/docs/mkdocs.yml.template
src/nskit/recipes/python/ingredients/docs/usage.md.template
src/nskit/recipes/python/ingredients/recipe/__init__.py
src/nskit/recipes/python/ingredients/recipe/ingredient.py.template.template
src/nskit/recipes/python/ingredients/recipe/pyproject.toml.template
src/nskit/recipes/python/ingredients/recipe/readme.md.template
src/nskit/recipes/python/ingredients/recipe/recipe.py.template
src/nskit/vcs/__init__.py
src/nskit/vcs/codebase.py
src/nskit/vcs/installer.py
src/nskit/vcs/namespace_validator.py
src/nskit/vcs/repo.py
src/nskit/vcs/settings.py
src/nskit/vcs/providers/__init__.py
src/nskit/vcs/providers/abstract.py
src/nskit/vcs/providers/azure_devops.py
src/nskit/vcs/providers/github.py
tests/functional/test_inheritance.py
tests/functional/test_license_file.py
tests/functional/test_nskit_interface.py
tests/functional/test_recipes/test_custom.py
tests/functional/test_recipes/test_python_api_service.py
tests/functional/test_recipes/test_python_package.py
tests/functional/test_recipes/test_recipe.py
tests/unit/test_common/test_extensions.py
tests/unit/test_common/test_logging.py
tests/unit/test_common/test_configuration/test_base_config.py
tests/unit/test_common/test_configuration/test_mixins.py
tests/unit/test_common/test_configuration/test_sources.py
tests/unit/test_common/test_contextmanagers/test_chdir.py
tests/unit/test_common/test_contextmanagers/test_env.py
tests/unit/test_common/test_contextmanagers/test_test_extensions.py
tests/unit/test_common/test_io/test_json.py
tests/unit/test_common/test_io/test_toml.py
tests/unit/test_common/test_io/test_yaml.py
tests/unit/test_mixer/test_utilities.py
tests/unit/test_mixer/test_components/test_file.py
tests/unit/test_mixer/test_components/test_filesystem_object.py
tests/unit/test_mixer/test_components/test_folder.py
tests/unit/test_mixer/test_components/test_hook.py
tests/unit/test_mixer/test_components/test_license_file.py
tests/unit/test_mixer/test_components/test_recipe.py
tests/unit/test_vcs/test_codebase.py
tests/unit/test_vcs/test_installer.py
tests/unit/test_vcs/test_namespace_validator.py
tests/unit/test_vcs/test_repo.py
tests/unit/test_vcs/test_settings.py