-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.py
66 lines (55 loc) · 2.38 KB
/
build.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
# yadtcontroller
# Copyright (C) 2014 Immobilien Scout GmbH
#
# 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, see <http://www.gnu.org/licenses/>.
from pybuilder.core import use_plugin, init, Author
use_plugin('python.core')
use_plugin('python.install_dependencies')
use_plugin('filter_resources')
use_plugin('copy_resources')
use_plugin('python.coverage')
use_plugin('python.distutils')
use_plugin('python.unittest')
use_plugin('python.distutils')
use_plugin('python.flake8')
authors = [Author('Marcel Wolf', '[email protected]'),
Author('Maximilien Riehl', '[email protected]'),
Author('Michael Gruber', '[email protected]')]
license = 'GNU GPL v3'
name = 'yadtcontroller'
url = 'https://github.com/yadt/yadtcontroller'
version = '0.1.5'
default_task = ['analyze', 'publish']
@init
def set_properties(project):
project.build_depends_on('mockito-without-hardcoded-distribute-version')
project.build_depends_on('flake8')
project.build_depends_on('mock')
project.depends_on('docopt')
project.depends_on('yadtcommons')
project.depends_on('yadtbroadcast-client-wamp2')
project.depends_on('Twisted')
project.depends_on('fysom')
project.depends_on('requests')
project.set_property("verbose", True)
project.get_property('filter_resources_glob').append('**/yadt_controller/__init__.py')
project.set_property('copy_resources_target', '$dir_dist')
project.get_property('copy_resources_glob').append('setup.cfg')
@init(environments="teamcity")
def set_properties_for_teamcity(project):
import os
project.version = '%s-%s' % (project.version, os.environ.get('BUILD_NUMBER', 0))
project.default_task = ['install_build_dependencies', 'package']
project.get_property('distutils_commands').append('bdist_rpm')
project.set_property('teamcity_output', True)