diff --git a/.gitignore b/.gitignore index acdf05e..5ce16a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *~ +*.zip *.py[cod] # C extensions diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a76203b --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +dist-zip: elevation.zip + +elevation.zip: *.py + cd ..;zip elevation/elevation.zip elevation/*.py elevation/*.png \ + elevation/AUTHORS elevation/LICENSE elevation/metadata.txt \ + elevation/Makefile elevation/README.md elevation/TODO diff --git a/metadata.txt b/metadata.txt new file mode 100644 index 0000000..8e3dfbb --- /dev/null +++ b/metadata.txt @@ -0,0 +1,29 @@ +; the next section is mandatory +[general] +name=Elevation +qgisMinimumVersion=1.8 +description=Obtain and display elevation points using the Google Maps API +category=Vector +version=version 0.2.0 +author=Steffen Macke +email=sdteffen@gmail.com +; end of mandatory metadata + +; start of optional metadata +changelog=2013-08-20 Elevation 0.2.0: + Several updates and bug fixes + +; tags are in comma separated value format, spaces are allowed +tags=elevation,point,click + +; these metadata can be empty +homepage=http://polylinie.de/elevation/ +tracker=https://github.com/sdteffen/qgis-elevation/issues +repository=https://github.com/sdteffen/qgis-elevation +icon=elevation_icon.png + +; experimental flag +experimental=False + +; deprecated flag (applies to the whole plugin and not only to the uploaded version) +deprecated=False