mirror of https://github.com/pulumi/pulumi.git
38 lines
1001 B
Python
38 lines
1001 B
Python
# coding=utf-8
|
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
import errno
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
from setuptools.command.install import install
|
|
from subprocess import check_call
|
|
|
|
|
|
VERSION = os.getenv("PULUMI_PYTHON_VERSION", "0.0.0")
|
|
def readme():
|
|
try:
|
|
with open('README.md', encoding='utf-8') as f:
|
|
return f.read()
|
|
except FileNotFoundError:
|
|
return "old Pulumi Package - Development Version"
|
|
|
|
|
|
setup(name='pulumi_old',
|
|
python_requires='>=3.8',
|
|
version=VERSION,
|
|
long_description=readme(),
|
|
long_description_content_type='text/markdown',
|
|
packages=find_packages(),
|
|
package_data={
|
|
'pulumi_old': [
|
|
'py.typed',
|
|
]
|
|
},
|
|
install_requires=[
|
|
'parver>=0.2.1',
|
|
'pulumi>=3.0.0,<4.0.0',
|
|
'semver>=2.8.1'
|
|
],
|
|
zip_safe=False)
|