Estoy tratando de subir un QGis plugin en el repositorio oficial. Cuando la carga de la .zip
archivo siempre vuelvo a este mensaje de error:
Hubo errores en la lectura paquete de plugin (por favor, compruebe también su plugin de metadatos). No se puede encontrar una carpeta dentro del comprimido paquete: esto no parece válido plugin
El contenido de la .zip
archivo es como sigue:
.
├── dialogue_load.py
├── dialogue_load.ui
├── dialogue_new.py
├── dialogue_new.ui
├── help
│ ├── build
│ ├── make.bat
│ ├── Makefile
│ └── source
│ ├── conf.py
│ ├── index.rst
│ ├── _static
│ └── _templates
├── hex_utils_qgis.py
├── i18n
│ └── af.ts
├── icons
│ ├── Load.png
│ └── New.png
├── __init__.py
├── LICENCE
├── Makefile
├── metadata.txt
├── pb_tool.cfg
├── plugin_upload.py
├── pylintrc
├── README.md
├── resources.py
├── resources.qrc
├── scripts
│ ├── compile-strings.sh
│ ├── run-env-linux.sh
│ └── update-strings.sh
└── test
├── __init__.py
├── qgis_interface.py
├── tenbytenraster.asc
├── tenbytenraster.asc.aux.xml
├── tenbytenraster.keywords
├── tenbytenraster.lic
├── tenbytenraster.prj
├── tenbytenraster.qml
├── test_hex-utils-qgis_dialog.py
├── test_init.py
├── test_qgis_environment.py
├── test_resources.py
├── test_translations.py
└── utilities.py
¿Qué le falta?