forked from vmware-archive/vcd-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (59 loc) · 2.26 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
# vCloud Air CLI 10
# Copyright (c) 2014 VMware, Inc. All Rights Reserved.
# This product is licensed to you under the
# Apache License, Version 2.0 (the "License").
# You may not use this product except in compliance with the License.
# This product may include a number of subcomponents with
# separate copyright notices and license terms. Your use of the source
# code for the these subcomponents is subject to the terms and
# conditions of the subcomponent's license, as noted in the LICENSE file.
#
from setuptools import setup, find_packages
import pip
from pip.req import parse_requirements
requirements = [
str(requirement.req)
for requirement in parse_requirements('requirements.txt', session=pip.download.PipSession())
]
setup(
name='vca-cli',
version='14rc2',
description='VMware vCloud CLI',
url='https://github.com/vmware/vca-cli',
author='VMware, Inc.',
author_email='pgomez@vmware.com',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
license='License :: OSI Approved :: Apache Software License',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'Environment :: Console',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
keywords='pyvcloud vcloud vcloudair vmware cli',
platforms=['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
test_suite='tests',
tests_require=[],
zip_safe=True,
entry_points='''
[console_scripts]
vca=vca_cli.vca_cli:cli
'''
)