├── .editorconfig ├── .github └── workflows │ ├── code-style.yml │ ├── draft-release.yml │ ├── draft-release │ ├── extract-changes.py │ ├── set-version-post0.py │ └── set-version.py │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── DEVELOPMENT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── qgis-plugin-dev-tools.code-workspace ├── requirements.in ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── qgis_plugin_dev_tools │ ├── __init__.py │ ├── __main__.py │ ├── build │ ├── __init__.py │ ├── changelog_parser.py │ ├── distribution.py │ ├── metadata.py │ ├── packaging.py │ └── rewrite_imports.py │ ├── cli │ └── __init__.py │ ├── config │ ├── __init__.py │ ├── dotenv.py │ └── pyproject.py │ ├── publish │ └── __init__.py │ ├── py.typed │ ├── start │ ├── __init__.py │ ├── bootstrap │ │ ├── __init__.py │ │ └── template.py │ ├── config.py │ ├── daemon_server.py │ └── launch.py │ └── utils │ ├── __init__.py │ └── distributions.py ├── test ├── test_build.py ├── test_read_distributions.py ├── test_read_dotenv.py ├── test_read_pyproject.py └── test_rewrite_imports.py └── whitelist.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/code-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/code-style.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release/extract-changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/draft-release/extract-changes.py -------------------------------------------------------------------------------- /.github/workflows/draft-release/set-version-post0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/draft-release/set-version-post0.py -------------------------------------------------------------------------------- /.github/workflows/draft-release/set-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/draft-release/set-version.py -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGELOG.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qgis-plugin-dev-tools.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/qgis-plugin-dev-tools.code-workspace -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/setup.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/__main__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/build/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/build/changelog_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/build/changelog_parser.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/build/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/build/distribution.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/build/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/build/metadata.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/build/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/build/packaging.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/build/rewrite_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/build/rewrite_imports.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/cli/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/config/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/config/dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/config/dotenv.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/config/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/config/pyproject.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/publish/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/publish/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/start/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/start/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/start/bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/start/bootstrap/__init__.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/start/bootstrap/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/start/bootstrap/template.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/start/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/start/config.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/start/daemon_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/start/daemon_server.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/start/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/start/launch.py -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qgis_plugin_dev_tools/utils/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/src/qgis_plugin_dev_tools/utils/distributions.py -------------------------------------------------------------------------------- /test/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/test/test_build.py -------------------------------------------------------------------------------- /test/test_read_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/test/test_read_distributions.py -------------------------------------------------------------------------------- /test/test_read_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/test/test_read_dotenv.py -------------------------------------------------------------------------------- /test/test_read_pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/test/test_read_pyproject.py -------------------------------------------------------------------------------- /test/test_rewrite_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/test/test_rewrite_imports.py -------------------------------------------------------------------------------- /whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/qgis-plugin-dev-tools/HEAD/whitelist.txt --------------------------------------------------------------------------------