Skip to content
This repository was archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
Added packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant Orchard committed Mar 14, 2019
1 parent 9f7d3c7 commit 8e51fb0
Showing 1 changed file with 31 additions and 28 deletions.
59 changes: 31 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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='[email protected]',
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'"]
)

0 comments on commit 8e51fb0

Please sign in to comment.