2011-03-07 23:29:15 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
#
|
|
|
|
# fTools
|
|
|
|
# Copyright (C) 2008-2011 Carson Farmer
|
|
|
|
# EMAIL: carson.farmer (at) gmail.com
|
|
|
|
# WEB : http://www.ftools.ca/fTools.html
|
|
|
|
#
|
|
|
|
# A collection of data management and analysis tools for vector data
|
|
|
|
#
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
#
|
2009-01-20 22:54:27 +00:00
|
|
|
# licensed under the terms of GNU GPL 2
|
2011-03-07 23:29:15 +00:00
|
|
|
#
|
2009-01-20 22:54:27 +00:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2011-03-07 23:29:15 +00:00
|
|
|
#
|
2009-01-20 22:54:27 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-03-07 23:29:15 +00:00
|
|
|
#
|
2009-01-20 22:54:27 +00:00
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2011-03-07 23:29:15 +00:00
|
|
|
#
|
|
|
|
#---------------------------------------------------------------------
|
2009-01-20 22:54:27 +00:00
|
|
|
|
2009-02-01 15:44:02 +00:00
|
|
|
def name():
|
2011-12-20 19:44:05 +02:00
|
|
|
return "fTools"
|
2009-02-01 15:44:02 +00:00
|
|
|
|
|
|
|
def description():
|
2011-12-20 19:44:05 +02:00
|
|
|
return "Tools for vector data analysis and management"
|
|
|
|
|
|
|
|
def category():
|
|
|
|
return "Vector"
|
2009-02-01 15:44:02 +00:00
|
|
|
|
|
|
|
def version():
|
2012-06-07 14:58:07 +03:00
|
|
|
return "0.6.2"
|
2011-12-20 19:44:05 +02:00
|
|
|
|
2009-01-20 22:54:27 +00:00
|
|
|
def qgisMinimumVersion():
|
2011-12-20 19:44:05 +02:00
|
|
|
return "1.4"
|
2010-12-12 19:19:54 +00:00
|
|
|
|
|
|
|
def icon():
|
2011-12-20 19:44:05 +02:00
|
|
|
return "icons/logo_small.png"
|
|
|
|
|
2009-02-02 01:06:31 +00:00
|
|
|
def authorName():
|
2011-12-20 19:44:05 +02:00
|
|
|
return "Carson J. Q. Farmer"
|
2009-02-01 15:44:02 +00:00
|
|
|
|
2009-01-20 22:54:27 +00:00
|
|
|
def classFactory( iface ):
|
2012-10-22 20:47:58 +02:00
|
|
|
from .fTools import fToolsPlugin
|
2011-12-20 19:44:05 +02:00
|
|
|
return fToolsPlugin( iface )
|