This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.py
executable file
·51 lines (46 loc) · 1.82 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from pybuilder.core import Author, init, use_plugin
from pybuilder.vcs import VCSRevision
use_plugin('python.core')
use_plugin('python.unittest')
use_plugin('python.install_dependencies')
use_plugin('python.flake8')
use_plugin('python.coverage')
use_plugin('python.distutils')
name = 'pybuilder_aws_plugin'
default_task = 'publish'
version = VCSRevision().get_git_revision_count()
summary = 'PyBuilder plugin to handle AWS functionality'
authors = [Author('Valentin Haenel', '[email protected]'),
Author('Stefan Neben', '[email protected]'),
Author('Carsten Rose', '[email protected]'),
Author('Schlomo Schapiro', '[email protected]'),
]
license = 'Apache'
url = 'https://github.com/ImmobilienScout24/pybuilder_aws_plugin'
@init
def set_properties(project):
project.set_property('install_dependencies_upgrade', True)
project.depends_on('boto3')
if sys.version_info[0:2] >= (2, 7):
project.depends_on('cfn-sphere', '>=0.1.30')
project.depends_on('httpretty')
project.build_depends_on('unittest2')
project.build_depends_on('mock')
project.build_depends_on('moto')
project.set_property('coverage_break_build', False)
project.set_property('distutils_classifiers', [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
'Topic :: System :: Archiving :: Packaging',
'Topic :: Utilities',
])