This repository was archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Grant Orchard
committed
Mar 14, 2019
1 parent
9f7d3c7
commit 8e51fb0
Showing
1 changed file
with
31 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
@@ -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'"] | ||
) |