forked from vmware-archive/salt-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·97 lines (83 loc) · 2.56 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
90
91
92
93
94
95
96
97
#!/usr/bin/env python
'''
The setup script for SaltTesting
'''
import os
import sys
SETUP_KWARGS = {
'scripts': [
'scripts/salt-jenkins-build',
'scripts/github-commit-status'
]
}
USE_SETUPTOOLS = False
# Change to salt source's directory prior to running any command
try:
SETUP_DIRNAME = os.path.dirname(__file__)
except NameError:
# We're most likely being frozen and __file__ triggered this NameError
# Let's work around that
SETUP_DIRNAME = os.path.dirname(sys.argv[0])
if SETUP_DIRNAME != '':
os.chdir(SETUP_DIRNAME)
if 'USE_SETUPTOOLS' in os.environ:
try:
from setuptools import setup
USE_SETUPTOOLS = True
SETUP_KWARGS['extras_require'] = {
'GitHub': ['requests>=2.4.2']
}
SETUP_KWARGS['install_requires'] = []
if sys.version_info < (2, 7):
SETUP_KWARGS['install_requires'].extend(['unittest2', 'argparse'])
SETUP_KWARGS['entry_points'] = {
'console_scripts': [
'salt-jenkins-build = salttesting.jenkins:main',
'github-commit-status = salttesting.github:main'
]
}
except ImportError:
USE_SETUPTOOLS = False
if USE_SETUPTOOLS is False:
from distutils.core import setup
exec(
compile(
open(os.path.join(SETUP_DIRNAME, 'salttesting', 'version.py')).read(),
os.path.join(SETUP_DIRNAME, 'salttesting', 'version.py'), 'exec'
)
)
NAME = 'SaltTesting'
VERSION = __version__
DESCRIPTION = (
'Required testing tools needed in the several SaltStack projects.'
)
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author='Pedro Algarvio',
author_email='[email protected]',
url='https://github.com/saltstack/salt-testing',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
],
packages=[
'salttesting',
'salttesting/ext',
'salttesting/parser',
'salttesting/cherrypytest',
'salttesting/pylintplugins',
'salttesting/pylintplugins/py3modernize',
'salttesting/pylintplugins/py3modernize/fixes',
],
**SETUP_KWARGS
)