blob: 6d7d7eb3eb2c64dd3616f2cadc4cfa123f832357 [file] [log] [blame]
martin f. kraffta56b2ec2013-07-03 19:04:54 +02001#
2# -*- coding: utf-8 -*-
3#
4# This file is part of reclass (http://github.com/madduck/reclass)
5#
martin f. krafft1ba35c52014-01-02 11:10:58 +13006# Copyright © 2007–14 martin f. krafft <madduck@madduck.net>
martin f. kraffta56b2ec2013-07-03 19:04:54 +02007# Released under the terms of the Artistic Licence 2.0
8#
Petr Michalec2e012232018-06-18 09:42:40 +02009from __future__ import absolute_import
10from __future__ import division
11from __future__ import print_function
12from __future__ import unicode_literals
13
martin f. krafft51406fb2013-07-04 07:48:44 +020014RECLASS_NAME = 'reclass'
Petr Michalecad441172017-09-18 17:18:10 +020015DESCRIPTION = 'merge data by recursive descent down an ancestry hierarchy (forked extended version)'
Petr Michalec7102e872018-08-01 13:27:36 +020016VERSION = '1.5.6'
Petr Michalecad441172017-09-18 17:18:10 +020017AUTHOR = 'martin f. krafft / Andrew Pickford / salt-formulas community'
18AUTHOR_EMAIL = 'salt-formulas@freelists.org'
19MAINTAINER = 'salt-formulas community'
20MAINTAINER_EMAIL = 'salt-formulas@freelists.org'
21COPYRIGHT = 'Copyright © 2007–14 martin f. krafft, extensions © 2017 Andrew Pickford, extensions © salt-formulas community'
martin f. krafft51406fb2013-07-04 07:48:44 +020022LICENCE = 'Artistic Licence 2.0'
Petr Michalecad441172017-09-18 17:18:10 +020023URL = 'https://github.com/salt-formulas/reclass'