martin f. krafft | a56b2ec | 2013-07-03 19:04:54 +0200 | [diff] [blame] | 1 | # |
| 2 | # -*- coding: utf-8 -*- |
| 3 | # |
| 4 | # This file is part of reclass (http://github.com/madduck/reclass) |
| 5 | # |
martin f. krafft | 1ba35c5 | 2014-01-02 11:10:58 +1300 | [diff] [blame] | 6 | # Copyright © 2007–14 martin f. krafft <madduck@madduck.net> |
martin f. krafft | a56b2ec | 2013-07-03 19:04:54 +0200 | [diff] [blame] | 7 | # Released under the terms of the Artistic Licence 2.0 |
| 8 | # |
Petr Michalec | 2e01223 | 2018-06-18 09:42:40 +0200 | [diff] [blame] | 9 | from __future__ import absolute_import |
| 10 | from __future__ import division |
| 11 | from __future__ import print_function |
| 12 | from __future__ import unicode_literals |
| 13 | |
martin f. krafft | 51406fb | 2013-07-04 07:48:44 +0200 | [diff] [blame] | 14 | RECLASS_NAME = 'reclass' |
Petr Michalec | ad44117 | 2017-09-18 17:18:10 +0200 | [diff] [blame] | 15 | DESCRIPTION = 'merge data by recursive descent down an ancestry hierarchy (forked extended version)' |
Petr Michalec | 7102e87 | 2018-08-01 13:27:36 +0200 | [diff] [blame^] | 16 | VERSION = '1.5.6' |
Petr Michalec | ad44117 | 2017-09-18 17:18:10 +0200 | [diff] [blame] | 17 | AUTHOR = 'martin f. krafft / Andrew Pickford / salt-formulas community' |
| 18 | AUTHOR_EMAIL = 'salt-formulas@freelists.org' |
| 19 | MAINTAINER = 'salt-formulas community' |
| 20 | MAINTAINER_EMAIL = 'salt-formulas@freelists.org' |
| 21 | COPYRIGHT = 'Copyright © 2007–14 martin f. krafft, extensions © 2017 Andrew Pickford, extensions © salt-formulas community' |
martin f. krafft | 51406fb | 2013-07-04 07:48:44 +0200 | [diff] [blame] | 22 | LICENCE = 'Artistic Licence 2.0' |
Petr Michalec | ad44117 | 2017-09-18 17:18:10 +0200 | [diff] [blame] | 23 | URL = 'https://github.com/salt-formulas/reclass' |