forked from sebdraven/verify-sigs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.py
74 lines (62 loc) · 3.16 KB
/
release.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
#+---------------------------------------------------------------------------+
#| Official name of the project : mispadmin
#+---------------------------------------------------------------------------+
name = "verify-sigs"
#+---------------------------------------------------------------------------+
#| Official name of the application
#+---------------------------------------------------------------------------+
appname = name
#+---------------------------------------------------------------------------+
#| Current OFFICIAL version of the application
#| the version number must be changed during the last commit before
#| the tag release.
#+---------------------------------------------------------------------------+
version = "1.0.dev0"
versionName = "Unknown"
#+---------------------------------------------------------------------------+
#| Copyright mentions
#+---------------------------------------------------------------------------+
copyright = "Copyright (C) 2016 TO_BE_DEFINED"
#+---------------------------------------------------------------------------+
#| Description of the application
#+---------------------------------------------------------------------------+
description = "TO_BE_DEFINED"
#+---------------------------------------------------------------------------+
#| Platforms on which the application can be executed
#+---------------------------------------------------------------------------+
platforms = "Linux_x86, Linux_x64"
#+---------------------------------------------------------------------------+
#| Authors names
#+---------------------------------------------------------------------------+
author = "Sebastien Larinier <[email protected]>"
#+---------------------------------------------------------------------------+
#| Contributor names
#+---------------------------------------------------------------------------+
contributors = [
"Germano Caronni",
"Sébastien Larinier"
]
#+---------------------------------------------------------------------------+
#| Email to contact authors
#+---------------------------------------------------------------------------+
author_email = "[email protected]"
#+---------------------------------------------------------------------------+
#| Official website of the application
#+---------------------------------------------------------------------------+
url = "https://www.sekoia.fr"
#+---------------------------------------------------------------------------+
#| Keywords to describe the application
#+---------------------------------------------------------------------------+
keywords = ["VIRALSTUDIO"]
#+---------------------------------------------------------------------------+
#| Long description
#| <!> Do not use it anymore
#+---------------------------------------------------------------------------+
"""@deprecated: the official long description is now the full README.md file"""
long_description = ""
#+---------------------------------------------------------------------------+
#| License used to publish the tool
#+---------------------------------------------------------------------------+
licenseName = "TO_BE_DEFINED"
license = """TO_BE_DEFINED"""