forked from devopshq/vspheretools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
104 lines (76 loc) · 2.7 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
98
99
100
101
102
103
104
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
__version__ = '1.0' # identify main version of vspheretools
devStatus = '4 - Beta' # default build status, see: https://pypi.python.org/pypi?%3Aaction=list_classifiers
if 'TRAVIS_BUILD_NUMBER' in os.environ and 'TRAVIS_BRANCH' in os.environ:
print("This is TRAVIS-CI build")
print("TRAVIS_BUILD_NUMBER = {}".format(os.environ['TRAVIS_BUILD_NUMBER']))
print("TRAVIS_BRANCH = {}".format(os.environ['TRAVIS_BRANCH']))
__version__ += '.{}{}'.format(
'' if 'release' in os.environ['TRAVIS_BRANCH'] or os.environ['TRAVIS_BRANCH'] == 'master' else 'dev',
os.environ['TRAVIS_BUILD_NUMBER'],
)
devStatus = '5 - Production/Stable' if 'release' in os.environ['TRAVIS_BRANCH'] or os.environ['TRAVIS_BRANCH'] == 'master' else devStatus
else:
print("This is local build")
__version__ += '.dev0' # set version as major.minor.localbuild if local build: python setup.py install
print("vspheretools build version = {}".format(__version__))
setup(
name='vspheretools',
version=__version__,
description='vSphereTools is a set of scripts from DevOpsHQ to support working with vSphere and virtual machines (VMs) on it, which are based on the pysphere library.',
long_description='You can see detailed user manual here: https://devopshq.github.io/vspheretools/',
license='MIT',
author='Timur Gilmullin',
author_email='[email protected]',
url='https://devopshq.github.io/vspheretools/',
download_url='https://github.com/devopshq/vspheretools.git',
entry_points={'console_scripts': ['vspheretools = vspheretools.VSphereTools:Main']},
classifiers=[
'Development Status :: {}'.format(devStatus),
'Environment :: Console',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
],
keywords=[
'vsphere',
'sphere client',
'client',
'classificator',
'utility',
'virtual',
'VM',
'virtualization',
'routines',
],
packages=[
'vspheretools',
'pysphere',
'pysphere.resources',
'pysphere.ZSI',
'pysphere.ZSI.generate',
'pysphere.ZSI.wstools',
],
setup_requires=[
],
tests_require=[
'pytest',
],
install_requires=[
],
package_data={
'': [
'./vspheretools-metarunners/*'
'./tests/*'
'LICENSE',
'README.md',
'README_RUS.md',
],
},
zip_safe=True,
)