pulumi/sdk/python/lib/setup.py
Sean Gillespie 89b052fc6d
Use Pipenv to manage Python environments (#1553)
* Use Pipenv to manage Python environments

* Rename PIPENV_ARGS to PIPENV_PYTHON_VERSION to avoid confusion. Also remove two unused variables
2018-06-21 18:01:23 -07:00

31 lines
998 B
Python

# Copyright 2016-2018, Pulumi Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The Pulumi Python SDK."""
from setuptools import setup, find_packages
setup(name='pulumi',
version='${VERSION}',
description='Pulumi\'s Python SDK',
url='https://github.com/pulumi/pulumi',
license='Apache 2.0',
packages=find_packages(),
install_requires=[
'protobuf>=3.6.0',
'grpcio>=1.9.1',
'six>=1.11.0'
],
zip_safe=False)