forked from theforeman/foreman_ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 1.82 KB
/
setup.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
#!/usr/bin/python
# vim: set fileencoding=utf-8 :
# Copyright (C) 2016 Guido Günther <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, please see
# <http://www.gnu.org/licenses/>
# END OF COPYRIGHT #
import re
from setuptools import setup
def fetch_version():
"""Get version from version.rb"""
version = "0.0"
version_re = re.compile(".*VERSION\s*=\s*'([0-9\.]+)'\s*$")
with open("lib/foreman_ansible/version.rb") as f:
for line in f:
m = version_re.match(line)
if m:
version = m.group(1)
break
else:
raise Exception("Could not determine version")
return version
setup(name = "foreman_ansible",
version = fetch_version(),
author = u'Daniel Lobato Garcia',
author_email = '[email protected]',
url = 'https://github.com/theforeman/foreman_ansible',
description = 'Ansible hook to publish report to the Foreman',
license = 'GPLv3+',
classifiers = [
'Environment :: Console',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Version Control :: Git',
'Operating System :: POSIX :: Linux',
],
scripts = ['extras/foreman_callback.py'],
)