-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.py
executable file
·39 lines (34 loc) · 1.23 KB
/
version.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2015-2017:
# Frédéric Mohier, frederic.mohier@alignak.net
#
"""
Alignak - Daemon module as an example to build other modules
"""
# Package name
__pkg_name__ = u"alignak_module_EXAMPLE"
# Module type for PyPI keywords
# Used for:
# - PyPI keywords
__module_types__ = u"example"
# Application manifest
__version__ = u"0.4.1"
__author__ = u"Frédéric Mohier"
__author_email__ = u"frederic.mohier@alignak.net"
__copyright__ = u"(c) 2015-2017 - %s" % __author__
__license__ = u"GNU Affero General Public License, version 3"
__git_url__ = u"https://github.com/Alignak-monitoring/alignak-module-example"
__doc_url__ = u"http://alignak-doc.readthedocs.io/en/latest"
__description__ = u"Alignak - Daemon module as an example to build other modules"
__classifiers__ = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration'
]