qgis-plugin-dev-tools 0.7.0__py3-none-any.whl → 0.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,7 +20,7 @@
20
20
  import logging
21
21
  import sys
22
22
 
23
- __version__ = "0.7.0"
23
+ __version__ = "0.9.0"
24
24
 
25
25
  LOGGER = logging.getLogger(__name__)
26
26
  _handler = logging.StreamHandler(sys.stdout)
@@ -35,6 +35,7 @@ from qgis_plugin_dev_tools.build.metadata import update_metadata_file
35
35
  from qgis_plugin_dev_tools.build.packaging import (
36
36
  copy_plugin_code,
37
37
  copy_runtime_requirements,
38
+ copy_license,
38
39
  )
39
40
  from qgis_plugin_dev_tools.config import DevToolsConfig, VersionNumberSource
40
41
 
@@ -84,6 +85,7 @@ def make_plugin_zip(
84
85
  changelog_contents,
85
86
  )
86
87
  copy_runtime_requirements(dev_tools_config, build_directory_path)
88
+ copy_license(dev_tools_config, build_directory_path)
87
89
 
88
90
  LOGGER.debug("creating built plugin zip file from build directory")
89
91
 
@@ -20,6 +20,8 @@
20
20
  import logging
21
21
  import shutil
22
22
  import sys
23
+ from typing import Generator, Optional
24
+
23
25
  from importlib_metadata import Distribution
24
26
  from pathlib import Path
25
27
 
@@ -133,6 +135,45 @@ def copy_runtime_requirements(
133
135
  )
134
136
 
135
137
 
138
+ def copy_license(dev_tools_config: DevToolsConfig, build_directory_path: Path) -> None:
139
+ plugin_build_path = build_directory_path / dev_tools_config.plugin_package_name
140
+ target_license_file = plugin_build_path / "LICENSE"
141
+ license_file = dev_tools_config.license_file_path
142
+ if license_file is not None:
143
+ if not license_file.exists():
144
+ LOGGER.error(
145
+ f"Configured license file "
146
+ f"{license_file} "
147
+ f"does not exist. Check the configuration."
148
+ )
149
+ return
150
+
151
+ if target_license_file.exists():
152
+ LOGGER.warning(
153
+ f"Overwriting existing license {target_license_file} "
154
+ f"with configured license {license_file}"
155
+ )
156
+ LOGGER.debug(f"Copying license file {license_file} to {build_directory_path}")
157
+ shutil.copy(license_file, target_license_file)
158
+ return
159
+
160
+ if target_license_file.exists():
161
+ LOGGER.debug(f"Existing license file {target_license_file} found.")
162
+ return
163
+
164
+ # Try finding the license
165
+ license_file = _find_existing_license_file(dev_tools_config.pyproject_path)
166
+ if not license_file:
167
+ LOGGER.warning(
168
+ "Cannot copy LICENSE file since it does not exist. "
169
+ "Configure valid LICENSE file with license_file_path in pyproject.toml"
170
+ )
171
+ return
172
+
173
+ LOGGER.debug(f"Copying license file {license_file} to {build_directory_path}")
174
+ shutil.copy(license_file, target_license_file)
175
+
176
+
136
177
  def _copy_distribution_files(
137
178
  distribution: Distribution,
138
179
  top_level_names: set[str],
@@ -190,3 +231,15 @@ def _copy_distribution_files(
190
231
  src=original_path,
191
232
  dst=new_path,
192
233
  )
234
+
235
+
236
+ def _find_existing_license_file(search_path: Path) -> Optional[Path]:
237
+ def generate_license_candidates() -> Generator[Path, None, None]:
238
+ for base_name in ("LICENSE", "license"):
239
+ for extension in ("", ".md", ".MD"):
240
+ yield search_path / f"{base_name}{extension}"
241
+
242
+ for potential_path in generate_license_candidates():
243
+ if potential_path.exists():
244
+ return potential_path
245
+ return None
@@ -54,6 +54,8 @@ def start(dotenv_file_paths: list[Path]) -> None:
54
54
  DevelopmentModeConfig(
55
55
  qgis_executable_path=dotenv_config.QGIS_EXECUTABLE_PATH,
56
56
  profile_name=dotenv_config.DEVELOPMENT_PROFILE_NAME,
57
+ locale=dotenv_config.QGIS_LOCALE,
58
+ ui_ini=dotenv_config.QGIS_GUI_INI,
57
59
  runtime_environment=dotenv_config.runtime_environment,
58
60
  runtime_library_paths=[Path(p) for p in sys.path],
59
61
  plugin_package_path=dev_tools_config.plugin_package_path,
@@ -21,6 +21,7 @@ from collections import ChainMap
21
21
  from enum import Enum, auto
22
22
  from importlib.util import find_spec
23
23
  from pathlib import Path
24
+ from typing import Optional
24
25
 
25
26
  from importlib_metadata import Distribution, distribution
26
27
  from packaging.requirements import Requirement
@@ -42,6 +43,7 @@ class VersionNumberSource(Enum):
42
43
 
43
44
 
44
45
  class DevToolsConfig:
46
+ pyproject_path: Path
45
47
  plugin_package_name: str
46
48
  plugin_package_path: Path
47
49
  runtime_distributions: list[Distribution]
@@ -49,9 +51,11 @@ class DevToolsConfig:
49
51
  append_distributions_to_path: bool
50
52
  version_number_source: VersionNumberSource
51
53
  disabled_extra_plugins: list[str]
54
+ license_file_path: Optional[Path]
52
55
 
53
56
  def __init__( # noqa: PLR0913
54
57
  self,
58
+ pyproject_path: Path,
55
59
  plugin_package_name: str,
56
60
  runtime_requires: list[str],
57
61
  changelog_file_path: Path,
@@ -59,6 +63,7 @@ class DevToolsConfig:
59
63
  auto_add_recursive_runtime_dependencies: bool,
60
64
  version_number_source: VersionNumberSource,
61
65
  disabled_extra_plugins: list[str],
66
+ license_file_path: Optional[Path],
62
67
  ) -> None:
63
68
  plugin_package_spec = find_spec(plugin_package_name)
64
69
  if plugin_package_spec is None or plugin_package_spec.origin is None:
@@ -66,6 +71,7 @@ class DevToolsConfig:
66
71
  f"could not find {plugin_package_name=} in the current environment"
67
72
  )
68
73
 
74
+ self.pyproject_path = pyproject_path
69
75
  self.plugin_package_path = Path(plugin_package_spec.origin).parent
70
76
  self.plugin_package_name = plugin_package_name
71
77
  # TODO: check versions are satisfied?
@@ -77,6 +83,7 @@ class DevToolsConfig:
77
83
  self.version_number_source = version_number_source
78
84
  self.extra_runtime_distributions = []
79
85
  self.disabled_extra_plugins = disabled_extra_plugins
86
+ self.license_file_path = license_file_path
80
87
 
81
88
  if auto_add_recursive_runtime_dependencies:
82
89
  # Add the requirements of the distributions as well
@@ -98,6 +105,7 @@ class DevToolsConfig:
98
105
  def from_pyproject_config(pyproject_file_path: Path) -> "DevToolsConfig":
99
106
  pyproject_config = read_pyproject_config(pyproject_file_path)
100
107
  return DevToolsConfig(
108
+ pyproject_path=pyproject_file_path,
101
109
  plugin_package_name=pyproject_config.plugin_package_name,
102
110
  runtime_requires=pyproject_config.runtime_requires,
103
111
  # TODO: allow setting path in pyproject file?
@@ -112,4 +120,8 @@ class DevToolsConfig:
112
120
  pyproject_config.version_number_source
113
121
  ),
114
122
  disabled_extra_plugins=pyproject_config.disabled_extra_plugins,
123
+ license_file_path=pyproject_file_path.parent
124
+ / pyproject_config.license_file_path
125
+ if pyproject_config.license_file_path
126
+ else None,
115
127
  )
@@ -34,14 +34,18 @@ class DotenvConfig:
34
34
  QGIS_EXECUTABLE_PATH: Path
35
35
  DEBUGGER_LIBRARY: Optional[str]
36
36
  DEVELOPMENT_PROFILE_NAME: Optional[str]
37
+ QGIS_LOCALE: Optional[str]
38
+ QGIS_GUI_INI: Optional[str]
37
39
  runtime_environment: dict[str, str]
38
40
 
39
- def __init__(
41
+ def __init__( # noqa: PLR0913
40
42
  self,
41
43
  *,
42
44
  QGIS_EXECUTABLE_PATH: str, # noqa: N803
43
45
  DEBUGGER_LIBRARY: Optional[str] = None, # noqa: N803
44
46
  DEVELOPMENT_PROFILE_NAME: Optional[str] = None, # noqa: N803
47
+ QGIS_LOCALE: Optional[str] = None, # noqa: N803
48
+ QGIS_GUI_INI: Optional[str] = None, # noqa: N803
45
49
  **other_vars: str,
46
50
  ) -> None:
47
51
  self.QGIS_EXECUTABLE_PATH = Path(QGIS_EXECUTABLE_PATH)
@@ -51,6 +55,8 @@ class DotenvConfig:
51
55
  )
52
56
  self.DEBUGGER_LIBRARY = DEBUGGER_LIBRARY
53
57
  self.DEVELOPMENT_PROFILE_NAME = DEVELOPMENT_PROFILE_NAME
58
+ self.QGIS_LOCALE = QGIS_LOCALE
59
+ self.QGIS_GUI_INI = QGIS_GUI_INI
54
60
  self.runtime_environment = other_vars
55
61
 
56
62
 
@@ -20,7 +20,7 @@
20
20
  import logging
21
21
  from dataclasses import dataclass, field
22
22
  from pathlib import Path
23
- from typing import Literal, Union
23
+ from typing import Literal, Optional, Union
24
24
 
25
25
  import tomli
26
26
 
@@ -43,6 +43,7 @@ class PyprojectConfig:
43
43
  Literal["changelog"], Literal["distribution"]
44
44
  ] = "changelog"
45
45
  disabled_extra_plugins: list[str] = field(default_factory=list)
46
+ license_file_path: Optional[str] = None
46
47
 
47
48
  def __post_init__(self) -> None:
48
49
  if self.version_number_source not in ["changelog", "distribution"]:
@@ -42,6 +42,8 @@ def launch_development_qgis(
42
42
  development_mode_config.qgis_executable_path,
43
43
  bootstrap_file_path,
44
44
  development_mode_config.profile_name,
45
+ development_mode_config.locale,
46
+ development_mode_config.ui_ini,
45
47
  )
46
48
 
47
49
  LOGGER.info("waiting for qgis to connect")
@@ -26,6 +26,8 @@ from typing import Optional
26
26
  class DevelopmentModeConfig:
27
27
  qgis_executable_path: Path
28
28
  profile_name: Optional[str]
29
+ locale: Optional[str]
30
+ ui_ini: Optional[str]
29
31
  runtime_environment: dict[str, str]
30
32
  runtime_library_paths: list[Path]
31
33
  plugin_package_path: Path
@@ -29,6 +29,8 @@ def launch_qgis_with_bootstrap_script(
29
29
  qgis_executable_path: Path,
30
30
  bootstrap_script_path: Path,
31
31
  profile_name: Optional[str],
32
+ locale: Optional[str],
33
+ ui_ini: Optional[str],
32
34
  ) -> None:
33
35
  args = [
34
36
  str(qgis_executable_path),
@@ -42,6 +44,16 @@ def launch_qgis_with_bootstrap_script(
42
44
  else:
43
45
  LOGGER.info("using default profile name")
44
46
 
47
+ if locale:
48
+ LOGGER.info("using locale name %s", locale)
49
+ args.extend(["--lang", locale])
50
+ else:
51
+ LOGGER.info("using default locale")
52
+
53
+ if ui_ini:
54
+ LOGGER.info("using ui ini file from path %s", ui_ini)
55
+ args.extend(["--customizationfile", ui_ini])
56
+
45
57
  LOGGER.debug("launch command args %s", args)
46
58
 
47
59
  process = Popen(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qgis-plugin-dev-tools
3
- Version: 0.7.0
3
+ Version: 0.9.0
4
4
  Summary: QGIS plugin development and packaging tools, which make managing runtime dependencies easy.
5
5
  Home-page: https://github.com/nlsfi/qgis-plugin-dev-tools
6
6
  Author: National Land Survey of Finland
@@ -22,11 +22,11 @@ Classifier: Typing :: Typed
22
22
  Requires-Python: >=3.9
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
- Requires-Dist: packaging >=21.0
26
- Requires-Dist: tomli >=2.0.0
27
- Requires-Dist: python-dotenv >=0.19.0
28
- Requires-Dist: importlib-metadata >=4.9.0
29
- Requires-Dist: requests >=2.27.0
25
+ Requires-Dist: packaging>=21.0
26
+ Requires-Dist: tomli>=2.0.0
27
+ Requires-Dist: python-dotenv>=0.19.0
28
+ Requires-Dist: importlib-metadata>=4.9.0
29
+ Requires-Dist: requests>=2.27.0
30
30
 
31
31
  # qgis-plugin-dev-tools
32
32
 
@@ -91,6 +91,14 @@ plugin_package_name = "your_plugin_package_name"
91
91
  version_number_source = "distribution" # or "changelog" (default if missing)
92
92
  ```
93
93
 
94
+ QGIS plugins are required to have a LICENSE file included in the plugin package. However, usually it is more convenient to keep the license file in the root of the repository. LICENSE can be copied automatically to the plugin zip while packaging if such file is found. A relative path to the license file can also be configured with `license_file_path` option.
95
+
96
+ ```toml
97
+ [tool.qgis_plugin_dev_tools]
98
+ plugin_package_name = "your_plugin_package_name"
99
+ license_file_path = "docs/my-license.md"
100
+ ```
101
+
94
102
  ## Plugin packaging
95
103
 
96
104
  Run `qgis-plugin-dev-tools build` (short `qpdt b`) to package the plugin and any runtime dependencies to a standard QGIS plugin zip file, that can be installed and published.
@@ -113,6 +121,8 @@ By default config is read from `pyproject.toml` and runtime config from `.env` i
113
121
  QGIS_EXECUTABLE_PATH= # path to qgis-bin/qgis-bin-ltr or .exe equivalents, necessary
114
122
  # DEBUGGER_LIBRARY= # debugpy/pydevd to start a debugger on init, library must be installed to the environment
115
123
  # DEVELOPMENT_PROFILE_NAME= # name of the profile that qgis is launched with, otherwise uses default
124
+ # QGIS_LOCALE= # locale code of QGIS, otherwise uses default
125
+ # QGIS_GUI_INI= # path to ini file containing QGIS UI customizations
116
126
 
117
127
  # any other variables are added to the runtime QGIS environment
118
128
  # SOMETHING=something
@@ -165,6 +175,14 @@ All notable changes to this project will be documented in this file.
165
175
 
166
176
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
167
177
 
178
+ ## [0.9.0] - 2025-01-08
179
+
180
+ - Feat: Copy license into the plugin zip while deploying
181
+
182
+ ## [0.8.0] - 2024-08-23
183
+
184
+ - Feat: Add locale and ui ini options to be able to further customize development environment
185
+
168
186
  ## [0.7.0] - 2024-05-21
169
187
 
170
188
  - Fix: Bundle contents by parsing pep-compliant distribution file catalog instead of possibly missing tool-specific top-level.txt
@@ -233,3 +251,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
233
251
  [0.6.1]: https://github.com/nlsfi/qgis-plugin-dev-tools/releases/tag/v0.6.1
234
252
  [0.6.2]: https://github.com/nlsfi/qgis-plugin-dev-tools/releases/tag/v0.6.2
235
253
  [0.7.0]: https://github.com/nlsfi/qgis-plugin-dev-tools/releases/tag/v0.7.0
254
+ [0.8.0]: https://github.com/nlsfi/qgis-plugin-dev-tools/releases/tag/v0.8.0
255
+ [0.9.0]: https://github.com/nlsfi/qgis-plugin-dev-tools/releases/tag/v0.9.0
@@ -0,0 +1,28 @@
1
+ qgis_plugin_dev_tools/__init__.py,sha256=COQRV9RQ7IMaTRLFDWEzoEys0yRJp_kYVplfvn2UNsY,1064
2
+ qgis_plugin_dev_tools/__main__.py,sha256=EqC7agwIoIKbMeOPrcpDWGAQmsaO_oFc0OkIxlowzmA,900
3
+ qgis_plugin_dev_tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ qgis_plugin_dev_tools/build/__init__.py,sha256=JDxRaPtJfN08AnyKMB8dTc1b2oIFHZBvclyIZQGnCEA,3593
5
+ qgis_plugin_dev_tools/build/changelog_parser.py,sha256=t9u30K2DyWXBOW47r2dMXzP-nbW7oIFCkYeBzsL8r_A,2212
6
+ qgis_plugin_dev_tools/build/distribution.py,sha256=ST2h-YeVh8HWeDURhXoG_Rba9Zha167tdBlVJbXEdQQ,835
7
+ qgis_plugin_dev_tools/build/metadata.py,sha256=rDKRDmvgJxsrlEWKnHNfq3gqOQxClgtNUeeKIIYyMos,1429
8
+ qgis_plugin_dev_tools/build/packaging.py,sha256=9npf95qRZjAlETUKc98Zs3EHqcUP-GsxBjgqaxX6YYk,8721
9
+ qgis_plugin_dev_tools/build/rewrite_imports.py,sha256=YZ3ORvm_7Gf6tBKqjqzp-BR-Q_CoIbIh7MlxRZIfPQA,5945
10
+ qgis_plugin_dev_tools/cli/__init__.py,sha256=qv0rEGKSUpk9oskNZC0X-bqiZy715XKDWQS0YBloqWI,6230
11
+ qgis_plugin_dev_tools/config/__init__.py,sha256=H8mNa_lBiSxLtAvuW-J8adzhZHP3I7BijxuWh_uQAnM,5165
12
+ qgis_plugin_dev_tools/config/dotenv.py,sha256=CmqPAIPCwRFS5gMuCePZuNAMwsjggCoXejA1Fpq5k8c,2647
13
+ qgis_plugin_dev_tools/config/pyproject.py,sha256=_JUJYU-ejo5zuYNeDdwdbC4bQZlhCvXkBtF_TUpdz0A,2437
14
+ qgis_plugin_dev_tools/publish/__init__.py,sha256=PB0bUWl6vjDSlqPm92hw2Vtn1A3sqymm3pWgkWsPCOI,2081
15
+ qgis_plugin_dev_tools/start/__init__.py,sha256=9eBCJnpLjE7bll2R_YljiTFj9Bq0NqaFGPOKC7DG274,2181
16
+ qgis_plugin_dev_tools/start/config.py,sha256=n8MaHsY-21LVcNnxwTrg9k8Wo2jb03nCKta6OB9dN3s,1326
17
+ qgis_plugin_dev_tools/start/daemon_server.py,sha256=1i0MWQ0NnbBKZzV6OdT2BZaDEqcIx29ABCIJPorECkg,1845
18
+ qgis_plugin_dev_tools/start/launch.py,sha256=Lqvb7ISTnwV8K1AEVM34q5oUV3OYDsjfRTYMUva6EgE,1959
19
+ qgis_plugin_dev_tools/start/bootstrap/__init__.py,sha256=4FoIYBxXM7zgyaTM4gz5fGD99kYaaqEm-LwBj3Fbuks,2750
20
+ qgis_plugin_dev_tools/start/bootstrap/template.py,sha256=KV2EgHSMxKzA7wbKaxYwPnn6c1f7D2Yrd1Qq_Huh6y0,12432
21
+ qgis_plugin_dev_tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ qgis_plugin_dev_tools/utils/distributions.py,sha256=Q2jZT44Iw8LIBNrf1X2thfCLiKu9yiu7joj0Pdxk-Oc,3215
23
+ qgis_plugin_dev_tools-0.9.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
24
+ qgis_plugin_dev_tools-0.9.0.dist-info/METADATA,sha256=Nl-hFjW6wbOksSx6e6KJ01vofSe27anxGemDM2n4IfE,11431
25
+ qgis_plugin_dev_tools-0.9.0.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
26
+ qgis_plugin_dev_tools-0.9.0.dist-info/entry_points.txt,sha256=RwM8y7cN8cRk003jpw-psB4DvifC5foZKSi04IDRBVw,109
27
+ qgis_plugin_dev_tools-0.9.0.dist-info/top_level.txt,sha256=JjwWwRniudLz30UtQJgmIQDeS3HgU5VBgDlKYJhz-nQ,22
28
+ qgis_plugin_dev_tools-0.9.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.7.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,28 +0,0 @@
1
- qgis_plugin_dev_tools/__init__.py,sha256=3mpZORDnC1ScS0CWLrneAkXL6sWo8WJ34AxblGmNXqc,1064
2
- qgis_plugin_dev_tools/__main__.py,sha256=EqC7agwIoIKbMeOPrcpDWGAQmsaO_oFc0OkIxlowzmA,900
3
- qgis_plugin_dev_tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- qgis_plugin_dev_tools/build/__init__.py,sha256=RbPVZeH29y8efqZRO0dmnH1ArzRvhcpOj9Ka60plX8c,3514
5
- qgis_plugin_dev_tools/build/changelog_parser.py,sha256=t9u30K2DyWXBOW47r2dMXzP-nbW7oIFCkYeBzsL8r_A,2212
6
- qgis_plugin_dev_tools/build/distribution.py,sha256=ST2h-YeVh8HWeDURhXoG_Rba9Zha167tdBlVJbXEdQQ,835
7
- qgis_plugin_dev_tools/build/metadata.py,sha256=rDKRDmvgJxsrlEWKnHNfq3gqOQxClgtNUeeKIIYyMos,1429
8
- qgis_plugin_dev_tools/build/packaging.py,sha256=ShLrWY_tGlf9orj865MzuET8VRJTpODgb1CPNvISosc,6714
9
- qgis_plugin_dev_tools/build/rewrite_imports.py,sha256=YZ3ORvm_7Gf6tBKqjqzp-BR-Q_CoIbIh7MlxRZIfPQA,5945
10
- qgis_plugin_dev_tools/cli/__init__.py,sha256=_LfVofPZDwIZA9OoDs_cU5d3qptnOzpbljf_s_9s9f0,6137
11
- qgis_plugin_dev_tools/config/__init__.py,sha256=7l7Iyjst-pqLobiAO2bKLvkQFLVWoq4O_rny9lQvHp8,4678
12
- qgis_plugin_dev_tools/config/dotenv.py,sha256=WMEcp8Qnt-Vh0XaP8ieQ868U9tH4_pYXTeZ5ZMraJVw,2372
13
- qgis_plugin_dev_tools/config/pyproject.py,sha256=QvhZIk4QQezKSmTm28IG_lHBIO59CUQmAUQNB78Gxa4,2383
14
- qgis_plugin_dev_tools/publish/__init__.py,sha256=PB0bUWl6vjDSlqPm92hw2Vtn1A3sqymm3pWgkWsPCOI,2081
15
- qgis_plugin_dev_tools/start/__init__.py,sha256=f1It2zeTzomxKHm2mbXTBoe3v7MoZ5aXbEkPrL9IrC8,2085
16
- qgis_plugin_dev_tools/start/config.py,sha256=kkTuPu-TSKeK1MHDZOcoTTw2LZz4psxJamJTfbAY7aQ,1274
17
- qgis_plugin_dev_tools/start/daemon_server.py,sha256=1i0MWQ0NnbBKZzV6OdT2BZaDEqcIx29ABCIJPorECkg,1845
18
- qgis_plugin_dev_tools/start/launch.py,sha256=koF0wfT8t8R0_ofy7dN_LSKGM_g9BjHfCKz5DRxc8IE,1612
19
- qgis_plugin_dev_tools/start/bootstrap/__init__.py,sha256=4FoIYBxXM7zgyaTM4gz5fGD99kYaaqEm-LwBj3Fbuks,2750
20
- qgis_plugin_dev_tools/start/bootstrap/template.py,sha256=KV2EgHSMxKzA7wbKaxYwPnn6c1f7D2Yrd1Qq_Huh6y0,12432
21
- qgis_plugin_dev_tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- qgis_plugin_dev_tools/utils/distributions.py,sha256=Q2jZT44Iw8LIBNrf1X2thfCLiKu9yiu7joj0Pdxk-Oc,3215
23
- qgis_plugin_dev_tools-0.7.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
24
- qgis_plugin_dev_tools-0.7.0.dist-info/METADATA,sha256=rl7tvnGaGFnWWPZj3Ij7eOxIaiSDHCcENv6g-mYhL_Q,10457
25
- qgis_plugin_dev_tools-0.7.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
26
- qgis_plugin_dev_tools-0.7.0.dist-info/entry_points.txt,sha256=RwM8y7cN8cRk003jpw-psB4DvifC5foZKSi04IDRBVw,109
27
- qgis_plugin_dev_tools-0.7.0.dist-info/top_level.txt,sha256=JjwWwRniudLz30UtQJgmIQDeS3HgU5VBgDlKYJhz-nQ,22
28
- qgis_plugin_dev_tools-0.7.0.dist-info/RECORD,,