From 8e51fb00a3c0ce57bab3c54dae69224a50125fca Mon Sep 17 00:00:00 2001 From: Grant Orchard Date: Fri, 15 Mar 2019 08:11:21 +1100 Subject: [PATCH] Added packages --- setup.py | 59 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/setup.py b/setup.py index 984f041..9a078de 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ -import os +# Copyright 2018-2019 VMware, Inc. +# SPDX-License-Identifier: Apache-2.0 +import os import sys from setuptools import setup @@ -8,37 +10,38 @@ MAX_REQUIRED_PYTHON = (3, 7) if not MIN_REQUIRED_PYTHON <= CURRENT_PYTHON <= MAX_REQUIRED_PYTHON: - sys.stderr.write( - """ - ========================== - Unsupported Python version - ========================== - """ - ) + sys.stderr.write( + """ + ========================== + Unsupported Python version + ========================== + """ + ) here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: - long_description = f.read() + long_description = f.read() setup( - name='cassdk', - version='0.0.1', # placeholder - url='https://github.com/grantorchard/caspyr', - license='', - author='Grant Orchard', - author_email='', - description='A python project for VMware Cloud Automation Services.', - long_description=long_description, - install_requires=['requests[security] == 2.20.0'], + name='caspyr', + version='0.0.1', # placeholder + url='https://github.com/grantorchard/caspyr', + license='Apache v2', + author='Grant Orchard', + author_email='gorchard@vmware.com', + description='A python project for VMware Cloud Automation Services.', + long_description=long_description, + packages=['caspyr'], + install_requires=['requests'], - classifiers=[ - 'Intended Audience :: Developers', - 'Development Status :: 3 - Alpha', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - ], - project_urls={ - 'Source': 'https://github.com/grantorchard/caspyr', - }, - platforms=["python_version >= '3.6'", "python_version <= '3.7'"] + classifiers=[ + 'Intended Audience :: Developers', + 'Development Status :: 3 - Alpha', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + ], + project_urls={ + 'Source': 'https://github.com/grantorchard/caspyr', + }, + platforms=["python_version >= '3.6'", "python_version <= '3.7'"] )