# This file contains metadata for your plugin. Since
# version 2.0 of QGIS this is the proper way to supply
# information about a plugin. The old method of
# embedding metadata in __init__.py will
# is no longer supported since version 2.0.

# This file should be included when you package your plugin.# Mandatory items:

[general]
name=CSV Tools
qgisMinimumVersion=3.0
description=Adds new processing algorithms and models that deal with CSV files
version=0.7.2
author=Yann Voté
email=ygversil@lilo.org

about=This plugin adds new processing algorithms and models to help working with CSV files. Added algorithms include, among others: load a CSV file as a vector layer, export a vector layer as a CSV file, compute differences between two version of the same layer, and so on...

tracker=https://github.com/ygversil/qgis-plugin-csv-tools/issues
repository=https://github.com/ygversil/qgis-plugin-csv-tools
# End of mandatory metadata

# Recommended items:

# Uncomment the following line and add your changelog:
changelog=
  Version 0.7.2
  * [bugfix] Fix bug on windows for export layer to CSV algorithm.
  ====
  Version 0.7.1
  * all strings have translation,
  * clean useless code,
  * use same separator list (`,`, `;`, and `\t`) for both import and export algorithms,
  * [bugfix] fix "int too large" bug on Windows,
  * [bugfix] tab-separated CSV files are now imported without error message.
  * [bugfix] semicolon-separated CSV files are now imported without error message.
  ====
  Version 0.7.0
  * Completely reworker attribute diff algorithms,
  * Allow to choose separator, quoting strategy, and line-ending char when exporting to CSV.
  ====
  Version 0.6.1
  * Remove unwanted print
  ====
  Version 0.6.0
  * bugfix: error message about too large columns,
  * QGIS 3.14 compatibility
  ====
  Version 0.5.0
  * Refactoring and more tests added,
  * QGIS maximum version is 3.12 (since 3.14 breaks API),
  * add algorithm to export layer to CSV.
  ====
  Version 0.4.4 - bugfix
  * Fix bug: Wrong SELECT query check [#1]
  ====
  version 0.4 - First public release

# Tags are comma separated with spaces allowed
tags=python,csv,postgresql,import,export,vector

homepage=https://github.com/ygversil/qgis-plugin-csv-tools
category=Analysis
icon=icons/csv.png
# experimental flag
experimental=True

# deprecated flag (applies to the whole plugin, not just a single version)
deprecated=False

