forked from cfn-sphere/cfn-sphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.py
executable file
·68 lines (55 loc) · 2.41 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
67
68
#!/usr/bin/env python
from pybuilder.core import use_plugin, init, Author
use_plugin("python.core")
use_plugin("python.unittest")
use_plugin("python.integrationtest")
use_plugin("python.install_dependencies")
use_plugin("python.flake8")
use_plugin("python.coverage")
use_plugin("python.distutils")
use_plugin('copy_resources')
use_plugin('filter_resources')
name = "cfn-sphere"
authors = [Author('Marco Hoyer', 'marco_hoyer@gmx.de')]
description = "cfn-sphere - A CLI tool intended to simplify AWS CloudFormation handling."
license = 'APACHE LICENSE, VERSION 2.0'
summary = 'cfn-sphere AWS CloudFormation management cli'
url = 'https://github.com/cfn-sphere/cfn-sphere'
version = '0.1.37'
default_task = ['clean', 'analyze', 'package']
@init
def set_properties(project):
project.build_depends_on("unittest2")
project.build_depends_on("mock")
project.build_depends_on("moto")
project.depends_on('six')
project.depends_on("click")
project.depends_on("boto3", version=">=1.4.1")
project.depends_on("pyyaml")
project.depends_on("networkx")
project.depends_on('prettytable')
project.depends_on('gitpython')
project.depends_on('jmespath')
project.set_property('integrationtest_inherit_environment', True)
project.set_property('coverage_break_build', False)
project.set_property('install_dependencies_upgrade', True)
project.set_property('copy_resources_target', '$dir_dist')
project.get_property('filter_resources_glob').extend(['**/cfn_sphere/__init__.py'])
project.set_property('distutils_console_scripts', ['cf=cfn_sphere.cli:main'])
project.set_property('distutils_classifiers', [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: System :: Systems Administration'
])
@init(environments='teamcity')
def set_properties_for_teamcity_builds(project):
import os
project.set_property('teamcity_output', True)
project.version = '%s-%s' % (project.version, os.environ.get('BUILD_NUMBER', 0))
project.default_task = ['clean', 'install_build_dependencies', 'publish']
project.set_property('install_dependencies_index_url', os.environ.get('PYPIPROXY_URL'))
project.get_property('distutils_commands').append('bdist_rpm')