-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
89 lines (68 loc) · 2.57 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import inspect
import os
import platform
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
__location__ = os.path.join(os.getcwd(), os.path.dirname(inspect.getfile(inspect.currentframe())))
def read_version(package):
with open(os.path.join(package, '__init__.py'), 'r') as fd:
for line in fd:
if line.startswith('__version__ = '):
return line.split()[-1].strip().strip("'")
version = read_version('zalando_deploy_cli')
py_major_minor_version = tuple(int(v.rstrip('+')) for v in platform.python_version_tuple()[:2])
def get_install_requirements(path):
content = open(os.path.join(__location__, path)).read()
requires = [req for req in content.split('\\n') if req != '']
if py_major_minor_version < (3, 4):
requires.append('pathlib')
return requires
class PyTest(TestCommand):
user_options = [('cov-html=', None, 'Generate junit html report')]
def initialize_options(self):
TestCommand.initialize_options(self)
self.cov = None
self.pytest_args = ['--cov', 'zalando_deploy_cli', '--cov-report', 'term-missing', '-v']
self.cov_html = False
def finalize_options(self):
TestCommand.finalize_options(self)
if self.cov_html:
self.pytest_args.extend(['--cov-report', 'html'])
self.pytest_args.extend(['tests'])
def run_tests(self):
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
def readme():
try:
return open('README.rst', encoding='utf-8').read()
except TypeError:
return open('README.rst').read()
setup(
name='zalando-deploy-cli',
packages=find_packages(),
version=version,
description='',
long_description=readme(),
author='Zalando SE',
url='https://github.com/zalando-incubator/zalando-deploy-cli',
keywords='',
license='MIT',
install_requires=get_install_requirements('requirements.txt'),
tests_require=['pytest-cov', 'pytest'],
cmdclass={'test': PyTest},
test_suite='tests',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
include_package_data=True, # required to include YAML templates
entry_points={'console_scripts': ['zdeploy = zalando_deploy_cli.cli:main']}
)